pub type Matrix<const T: usize, const Q: usize> = Matrix<T, Q>;
pub struct Matrix<const T: usize, const Q: usize> { pub data: [[f32; Q]; T], }
data: [[f32; Q]; T]
2D Array of f32 data.