Matrix.inverse

Returns an inverted copy of the current matrix (nxn matrices, 2 >= n <= 4).

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

Meta