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 Matrix<T> SolveTransposeInto(
Matrix<T> rightHandSide,
Matrix<T> result
)
Public Function SolveTransposeInto (
rightHandSide As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
Matrix<T>^ SolveTransposeInto(
Matrix<T>^ rightHandSide,
Matrix<T>^ result
)
member SolveTransposeInto :
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 the (conjugate)
transpose of this instance and rightHandSide.
Reference