Mat.det

Gets the determinant of this matrix.

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

Return Value

Type: T

The determinant of this matrix.

Meta