Solves a system of equations defined by the matrix and the specified right-hand side.
Namespace: Extreme.Mathematics.Generic.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override Vector<T> SolveInto(
TransposeOperation operation,
Vector<T> rightHandSide,
Vector<T> result
)
Public Overrides 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
) override
abstract SolveInto :
operation : TransposeOperation *
rightHandSide : Vector<'T> *
result : Vector<'T> -> Vector<'T>
override 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.Mathematics.GenericVectorT
A vector that contains the right-hand side. - result
- Type: Extreme.Mathematics.GenericVectorT
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.
Numerical Libraries
Supported in: 5.x
Reference