Mat.invertible

Determines if this matrix is invertible, which simply means a non-zero determinant.

struct Mat(T, size_t rowCount, size_t colCount)
const
static if(rowCount == colCount)
bool
invertible
()
if (
isNumeric!T &&
rowCount > 0
&&
colCount > 0
)

Return Value

Type: bool

True if this matrix is invertible.

Meta