Computes the determinant of the matrix.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static double Determinant(
	DoubleBandMatrix A
)
Visual Basic (Declaration)
Public Shared Function Determinant ( _
	A As DoubleBandMatrix _
) As Double
Visual C++
public:
static double Determinant(
	DoubleBandMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Matrix..::.DoubleBandMatrix
A banded matrix.

Return Value

The determinant of the matrix.

See Also