Computes the determinant of a given matrix.

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

Syntax

C#
public static float Determinant(
	FloatMatrix A
)
Visual Basic (Declaration)
Public Shared Function Determinant ( _
	A As FloatMatrix _
) As Single
Visual C++
public:
static float Determinant(
	FloatMatrix^ A
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatMatrix
A matrix.

Return Value

The determinant of A.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MatrixNotSquareExceptionThrown if A is not square.

See Also