LinearOperator<T>.IsSingular Method

Gets whether the matrix is singular.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual bool IsSingular()

Return Value

Boolean
true if the matrix is singular; otherwise false.

Remarks

A matrix is singular when its rows or columns are not linearly independent.

A singular matrix does not have an inverse, and a system of simultaneous linear equation corresponding to the matrix does not have a solution.

See Also