Solves a system of equations defined by the matrix and multiple right-hand sides.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual Matrix<T> SolveInto(
TransposeOperation operation,
Matrix<T> rightHandSide,
Matrix<T> result
)
Public Overridable 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
)
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.
Reference