Click or drag to resize

LUDecompositionSolve Method

Solves A x = b.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public ColumnVector Solve(
	IReadOnlyList<double> rhs
)

Parameters

rhs
Type: System.Collections.GenericIReadOnlyListDouble
The right-hand side vector b.

Return Value

Type: ColumnVector
The solution vector x.
Exceptions
ExceptionCondition
ArgumentNullExceptionrhs is null.
DimensionMismatchExceptionThe dimension of rhs is not the same as the dimension of the matrix.
See Also