Click or drag to resize

FloatSparseFactSolve(FloatVector) Method

Uses the current factorization to solve for the given right hand side.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatVector Solve(
	FloatVector rhs
)

Parameters

rhs  FloatVector
The right hand side to solve for.

Return Value

FloatVector
The solution if successful.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the length of rhs is not equal to the number of rows in the factored matrix.
Remarks
One should check the ErrorStatus property before calling Solve to ensure the factorization is valid.
See Also