Solves a system of equations defined by the matrix and multiple right-hand sides.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public override Matrix<T> SolveInto(
TransposeOperation operation,
Matrix<T> rightHandSide,
Matrix<T> result
)
Public Overrides Function SolveInto (
operation As TransposeOperation,
rightHandSide As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
virtual Matrix<T>^ SolveInto(
TransposeOperation operation,
Matrix<T>^ rightHandSide,
Matrix<T>^ result
) override
abstract SolveInto :
operation : TransposeOperation *
rightHandSide : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override SolveInto :
operation : TransposeOperation *
rightHandSide : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- operation
- Type: Extreme.MathematicsTransposeOperation
The operation to perform on the matrix before solving. - rightHandSide
- Type: Extreme.MathematicsMatrixT
A matrix whose columns contain the right-hand sides. - result
- Type: Extreme.MathematicsMatrixT
The vector that is to hold the result. May be .
Return Value
Type:
MatrixTThe solution of the system of equations defined by this instance,
transformed as specified by operation,
and rightHandSide.
Numerical Libraries
Supported in: 6.0
Reference