Matrix.det

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

  1. mt det()
  2. mt det()
  3. mt det()
    struct Matrix(type, int rows_, int cols_)
    @safe pure nothrow const
    static if(!((rows == 2) && (cols == 2)))
    static if(!((rows == 3) && (cols == 3)))
    static if((rows == 4) && (cols == 4))
    det
    ()
    if (
    (rows_ > 0) &&
    (cols_ > 0)
    )

Meta