Skip to main content

Mat

Type Alias Mat 

Source
pub type Mat<const ROW: usize, const COL: usize> = Matrix<f32, ROW, COL>;

Aliased Type§

#[repr(C)]
pub struct Mat<const ROW: usize, const COL: usize> { pub columns: Vector<Vector<f32, ROW>, COL>, }

Fields§

§columns: Vector<Vector<f32, ROW>, COL>