Click or drag to resize
DigitalRuneCholeskyDecompositionFSolveLinearEquations Method
Solves the equation A * X = B.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public MatrixF SolveLinearEquations(
	MatrixF matrixB
)

Parameters

matrixB
Type: DigitalRune.Mathematics.AlgebraMatrixF
The matrix B with as many rows as A and any number of columns.

Return Value

Type: MatrixF
X, so that A * X = B.
Exceptions
ExceptionCondition
ArgumentNullExceptionmatrixB is .
ArgumentException The number of rows does not match.
MathematicsException The matrix A is not symmetric and positive definite.
See Also