Matrix.det

Returns the determinant of the current data ( 2x2, 3x3 and 4x4 matrices ).

  1. alias det = determinant
  2. alias det = determinant
  3. alias det = determinant
    struct Matrix(type, int numCols, int numRows)
    @safe pure nothrow
    static if(!((cols == 2) && (rows == 2)))
    static if(!((cols == 3) && (rows == 3)))
    static if((cols == 4) && (rows == 4))
    alias det = determinant

Meta