Matrix.inverse

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

struct Matrix(type, int numCols, int numRows)
@safe pure nothrow @property const
static if((cols == rows) && (cols <= 4))
inverse
()
if (
(numCols > 1) &&
(numRows > 1)
)

Meta