Matrix.inverse

Calcs this matrix inverse

struct Matrix(T, size_t dim_)
nothrow @nogc pure const
inverse
()
if (
__traits(isFloating, T) &&
dim_ >= 2
&&
dim_ <= 4
)

Return Value

Type: Matrix

A matrix full of NaNs if this matrix isn't inverible (!isOk =1)

Meta