 | DoubleSymPDTriDiagFactSolve Method (DoubleMatrix) |
Uses this LDL' factorization to solve the linear system AX = B.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleMatrix Solve(
DoubleMatrix B
)
Public Function Solve (
B As DoubleMatrix
) As DoubleMatrix
public:
DoubleMatrix^ Solve(
DoubleMatrix^ B
)
member Solve :
B : DoubleMatrix -> DoubleMatrix
Parameters
- B
- Type: CenterSpace.NMath.CoreDoubleMatrix
The matrix of right hand sides. B must have the
same number of rows as the factored matrix.
Return Value
Type:
DoubleMatrixA matrix with the same number of columns as
B containing
the solutions.
Exceptions
Remarks
The ith column of X, X(i), is
the solution to the equation AX(i) = B(i), where
B(i) is the ith column of B.
See Also