Solves a system of equations defined by the matrix and the specified right-hand side.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract Vector<T> SolveInto(
TransposeOperation operation,
Vector<T> rightHandSide,
Vector<T> result
)
Public MustOverride Function SolveInto (
operation As TransposeOperation,
rightHandSide As Vector(Of T),
result As Vector(Of T)
) As Vector(Of T)
public:
virtual Vector<T>^ SolveInto(
TransposeOperation operation,
Vector<T>^ rightHandSide,
Vector<T>^ result
) abstract
abstract SolveInto :
operation : TransposeOperation *
rightHandSide : Vector<'T> *
result : Vector<'T> -> Vector<'T>
Parameters
- operation
- Type: Extreme.MathematicsTransposeOperation
The operation to perform on the matrix before solving. - 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,
transformed as specified by operation,
and rightHandSide.
Reference