| DoubleSymPDTriDiagFactSolve(DoubleVector) Method |
Uses the LDL' factorization of self to solve the linear system Ax = b.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public DoubleVector Solve(
DoubleVector b
)
Public Function Solve (
b As DoubleVector
) As DoubleVector
public:
DoubleVector^ Solve(
DoubleVector^ b
)
member Solve :
b : DoubleVector -> DoubleVector
Parameters
- b DoubleVector
- Vector to solve for. Must have a length equal to the
number of rows in the factored matrix.
Return Value
DoubleVectorA vector
x that is the solution to
Ax = b.
Exceptions See Also