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