.NET Matrix Library
Determinant Method
See Also  Send Feedback



Returns the determinant of a square real matrix using its LU factorization.

Syntax

Visual Basic (Declaration) 
Public Function Determinant() As Double
Visual Basic (Usage)Copy Code
Dim instance As LU
Dim value As Double
 
value = instance.Determinant()
C# 
public double Determinant()
C++/CLI 
public:
double Determinant(); 

Return Value

A double that equals to the determinant of the matrix.

Exceptions

ExceptionDescription
NotSquareMatrixExceptionThe LU factorization represents a non-square matrix.

Remarks

Determinant can be calculated only for a square matrix.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library