Solves a system of equations defined by the matrix and the specified right-hand side in the least squares sense.
Namespace: Extreme.Mathematics.LinearAlgebra.IterativeSolvers.PreconditionersAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override Vector<T> LeastSquaresSolveInto(
Vector<T> rightHandSide,
Vector<T> result
)
Public Overrides Function LeastSquaresSolveInto (
rightHandSide As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
public:
virtual Vector<T>^ LeastSquaresSolveInto(
Vector<T>^ rightHandSide,
Vector<T>^ result
) override
abstract LeastSquaresSolveInto :
rightHandSide : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override LeastSquaresSolveInto :
rightHandSide : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- rightHandSide
- Type: Extreme.MathematicsVectorT
A vector that contains the right-hand side. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTThe solution of the system of equations defined by this instance
and rightHandSide.
Numerical Libraries
Supported in: 6.0
Reference