Solves the linear system AX = B.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public static DoubleComplexMatrix Solve( DoubleComplexLowerTriMatrix A, DoubleComplexMatrix B ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function Solve ( _ A As DoubleComplexLowerTriMatrix, _ B As DoubleComplexMatrix _ ) As DoubleComplexMatrix |
| Visual C++ |
|---|
public: static DoubleComplexMatrix^ Solve( DoubleComplexLowerTriMatrix^ A, DoubleComplexMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Matrix..::.DoubleComplexLowerTriMatrix
A lower triangular matrix.
- B
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
The matrix of right hand sides. B must have the same number of rows as A.
Return Value
A matrix with the same number of columns as B containing the solutions.
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.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.SingularMatrixException | Thrown if A is singular. |
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the number of rows in B is different than the number of rows in A. |