Matrix<T>.IsSingular Method

Gets a value indicating whether this matrix is singular.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public override 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 unique solution.

See Also