Skip to main content

Matrix

Type Alias Matrix 

Source
pub type Matrix<const T: usize, const Q: usize> = Matrix<T, Q>;

Aliased Type§

pub struct Matrix<const T: usize, const Q: usize> {
    pub data: [[f32; Q]; T],
}

Fields§

§data: [[f32; Q]; T]

2D Array of f32 data.