Skip to main content

fixed_dsp/matrix/
mod.rs

1mod mat_add;
2mod mat_mul;
3mod mat_vec_mul;
4
5pub use mat_add::*;
6pub use mat_mul::*;
7pub use mat_vec_mul::*;
8
9pub struct Matrix<T> {
10    pub rows: usize,
11    pub cols: usize,
12    pub data: *mut T,
13}