Click or drag to resize

NMathFunctionsSolve(DoubleComplexMatrix, DoubleComplexMatrix) Method

Solves the linear system AX = B.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexMatrix Solve(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)

Parameters

A  DoubleComplexMatrix
A coefficient matrix.
B  DoubleComplexMatrix
The matrix of right hand sides. B must have the same number of rows as the matrix A.

Return Value

DoubleComplexMatrix
A matrix with the same number of columns as B containing the solutions.
Exceptions
ExceptionCondition
MatrixNotSquareExceptionThrown if the matrix is not square.
SingularMatrixExceptionThrown if the matrix is singular.
MismatchedSizeExceptionThrown if the number of rows in B is different than the number of rows in the matrix A.
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.
Note that a DoubleComplexLUFact instance is created with each call. If you are calling Solve() repeatedly (inside a loop, for example), and the coefficient matrix A is not changing between calls, this is more efficient:
Example
DoubleComplexLUFact fact = new DoubleComplexLUFact( A, false ); ... fact.Solve( B );
See Also