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 DoubleComplex Determinant(
	DoubleComplexMatrix A
)
Visual Basic (Declaration)
Public Shared Function Determinant ( _
	A As DoubleComplexMatrix _
) As DoubleComplex
Visual C++
public:
static DoubleComplex Determinant(
	DoubleComplexMatrix^ A
)

Return Value

The determinant of A.

Exceptions

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

See Also