  | NMathFunctionsSolve(FloatHermitianMatrix, FloatComplexMatrix) Method | 
            Solves the linear system AX = B.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatComplexMatrix Solve(
	FloatHermitianMatrix A,
	FloatComplexMatrix B
)
Public Shared Function Solve ( 
	A As FloatHermitianMatrix,
	B As FloatComplexMatrix
) As FloatComplexMatrix
public:
static FloatComplexMatrix^ Solve(
	FloatHermitianMatrix^ A, 
	FloatComplexMatrix^ B
)
static member Solve : 
        A : FloatHermitianMatrix * 
        B : FloatComplexMatrix -> FloatComplexMatrix Parameters
- A  FloatHermitianMatrix
 - An Hermitian matrix.
 - B  FloatComplexMatrix
 - The matrix of right hand sides. B must have the
            same number of rows as A.
 
Return Value
FloatComplexMatrixA 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