Matrix.invert

Inverts the current matrix (nxn matrices, 2 >= n <= 4).

struct Matrix(type, int rows_, int cols_)
@safe pure nothrow
static if((rows == cols) && (rows >= 2) && (rows <= 4))
void
invert
()
if (
(rows_ > 0) &&
(cols_ > 0)
)

Meta