Computes the determinant of a given matrix.
Namespace:
CenterSpace.NMath.CoreAssembly: 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 ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
Return Value
The determinant of A.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MatrixNotSquareException | Thrown if A is not square. |