Matrix.inverse

Returns an inverted copy of this matrix

  1. Matrix inverse()
  2. Matrix inverse()
  3. Matrix inverse()
  4. Matrix inverse()
    struct Matrix(T, int R, int C)
    @nogc pure const nothrow
    static if(isSquare && isFloatingPoint!T && R == 4)
    inverse
    ()

Return Value

Type: Matrix

inverse of matrix. Note: Matrix inversion is provided for 1x1, 2x2, 3x3 and 4x4 floating point matrices.

Meta