pub type Matrix22 = Matrix<2, 2>;
A 2x2 matrix, allocated on the stack.
pub struct Matrix22 { pub rows: [[f64; 2]; 2], }
rows: [[f64; 2]; 2]
The elements of the matrix