.NET Matrix Library
IsSingular Property
See Also  Send Feedback



Gets a Boolean value indicating whether the LU factorization represents a singular matrix.

Syntax

Visual Basic (Declaration) 
Public ReadOnly Property IsSingular As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CLU
Dim value As Boolean
 
value = instance.IsSingular
C# 
public bool IsSingular {get;}
C++/CLI 
public:
property bool IsSingular {
   bool get();
}

Property Value

true if the factored matrix has been found to be singular; otherwise false.

Remarks

Use IsSingular property to check for matrix singularity, just before attempting to use the Inverse or Solve methods.

Requirements

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

See Also

.NET Matrix Library