Click or drag to resize

NMathFunctionsSolve(FloatComplexTriDiagMatrix, FloatComplexMatrix, Boolean) Method

Solves the linear system AX = B.

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

Parameters

A  FloatComplexTriDiagMatrix
A tridiagonal matrix.
B  FloatComplexMatrix
The matrix of right hand sides. B must have the same number of rows as A.
isHermitianPD  Boolean
true if A is Hermitian and positive definite.

Return Value

FloatComplexMatrix
A matrix with the same number of columns as B containing the solutions.
Exceptions
ExceptionCondition
SingularMatrixExceptionThrown if A is singular.
MismatchedSizeExceptionThrown if the number of rows in B is different than the number of rows in 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.
See Also