Computes the determinant of a given matrix.

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

Syntax

C#
public static FloatComplex Determinant(
	FloatComplexMatrix A
)
Visual Basic
Public Shared Function Determinant ( _
	A As FloatComplexMatrix _
) As FloatComplex
Visual C++
public:
static FloatComplex Determinant(
	FloatComplexMatrix^ A
)

Return Value

The determinant of A.

Exceptions

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

See Also