|  | FloatSymPDTriDiagFactSolve(FloatMatrix) Method | 
            Uses this LDL' factorization to solve the linear system AX = B.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic FloatMatrix Solve(
	FloatMatrix B
)
Public Function Solve ( 
	B As FloatMatrix
) As FloatMatrix
public:
FloatMatrix^ Solve(
	FloatMatrix^ B
)
member Solve : 
        B : FloatMatrix -> FloatMatrix Parameters
- B  FloatMatrix
- The matrix of right hand sides. B must have the
            same number of rows as the factored matrix.
Return Value
FloatMatrixA matrix with the same number of columns as 
B containing
            the solutions.
 Exceptions
Exceptions Remarks
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
See Also