 | FloatComplexSparseFactSolve Method (FloatComplexVector) |
Uses the current factorization to solve for the given right hand side.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic FloatComplexVector Solve(
FloatComplexVector rhs
)
Public Function Solve (
rhs As FloatComplexVector
) As FloatComplexVector
public:
FloatComplexVector^ Solve(
FloatComplexVector^ rhs
)
member Solve :
rhs : FloatComplexVector -> FloatComplexVector
Parameters
- rhs
- Type: CenterSpace.NMath.CoreFloatComplexVector
The right hand side to solve for.
Return Value
Type:
FloatComplexVectorThe solution if successful.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown if the length of
rhs is not equal to the number of rows in the factored matrix. |
RemarksOne should check the ErrorStatus property before
calling Solve to ensure the factorization is valid.
See Also