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 Matrix<T> SolveInto(
Matrix<T> rightHandSide,
Matrix<T> result
)
Public Function SolveInto (
rightHandSide As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
Matrix<T>^ SolveInto(
Matrix<T>^ rightHandSide,
Matrix<T>^ result
)
member SolveInto :
rightHandSide : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- 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
and rightHandSide.
Numerical Libraries
Supported in: 6.0
Reference