Click or drag to resize

NMathFunctionsInverse(FloatSymBandMatrix, Boolean) Method

Computes the inverse of A.

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

Parameters

A  FloatSymBandMatrix
A symmetric, banded matrix.
isPositiveDefinite  Boolean
true if A is positive definite. false otherwise.

Return Value

FloatMatrix
The inverse of A.
Exceptions
ExceptionCondition
SingularMatrixExceptionThrown if A is singularor isPositiveDefinite is true and A is not positive definite.
See Also