fixed-dsp 0.2.1

A Rust library for fixed-point digital signal processing (DSP) algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod mat_add;
mod mat_mul;
mod mat_vec_mul;

pub use mat_add::*;
pub use mat_mul::*;
pub use mat_vec_mul::*;

pub struct Matrix<T> {
    pub rows: usize,
    pub cols: usize,
    pub data: *mut T,
}