  | NMathFunctionsSolve(DoubleHermitianBandMatrix, DoubleComplexMatrix, Boolean) Method | 
            Solves the linear system AX = B.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleComplexMatrix Solve(
	DoubleHermitianBandMatrix A,
	DoubleComplexMatrix B,
	bool isPositiveDefinite
)
Public Shared Function Solve ( 
	A As DoubleHermitianBandMatrix,
	B As DoubleComplexMatrix,
	isPositiveDefinite As Boolean
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ Solve(
	DoubleHermitianBandMatrix^ A, 
	DoubleComplexMatrix^ B, 
	bool isPositiveDefinite
)
static member Solve : 
        A : DoubleHermitianBandMatrix * 
        B : DoubleComplexMatrix * 
        isPositiveDefinite : bool -> DoubleComplexMatrix Parameters
- A  DoubleHermitianBandMatrix
 - An Hermitian banded matrix.
 - B  DoubleComplexMatrix
 - The matrix of right hand sides. B must have the
            same number of rows as A.
 - isPositiveDefinite  Boolean
 - true if A is positive definite.
            
 
Return Value
DoubleComplexMatrixA 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