Click or drag to resize

NMathFunctionsInverse(DoubleHermitianBandMatrix, Boolean) Method

Computes the inverse of the matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexMatrix Inverse(
	DoubleHermitianBandMatrix A,
	bool isPositiveDefinite
)

Parameters

A  DoubleHermitianBandMatrix
An Hermitian banded matrix.
isPositiveDefinite  Boolean
true is A is positive definite. false otherwise.

Return Value

DoubleComplexMatrix
The inverse of A.
Exceptions
ExceptionCondition
SingularMatrixExceptionThrown if A is singular or if isPositiveDefinite is true and A is not positive definite.
See Also