Click or drag to resize
Accord.NET (logo)

LuDecompositionNonsingular Property

Returns if the matrix is non-singular (i.e. invertible). Please see remarks for important information regarding numerical stability when using this method.

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public bool Nonsingular { get; }
Request Example View Source

Property Value

Type: Boolean
Remarks
Please keep in mind this is not one of the most reliable methods for checking singularity of a matrix. For a more reliable method, please use IsSingular(Double) or the SingularValueDecomposition.
See Also