pub fn mat2x3_det<T>(mat: [[T; 3]; 2]) -> Twhere
    T: Copy + Mul<Output = T> + Sub<Output = T>,
Expand description

Computes the determinant of a matrix.