Integer-Array
No-STD fixed-point fixed-size array for Rust.
The library lets the user declare arrays with traits that simplify the writing of DSP-code. It utilizes the fixed library to allow flexibility in fixed point sizes and precisions.
This is an experimental library for no-std DSP. Expect breaking changes.
The package can be found at https://crates.io/crates/integer_array.
The documentation can be found at https://docs.rs/integer_array.
Release notes are found under RELEASES.md
Use example
use integer_array as ia;
use *;
use ;
// Define an array type of size 4, and implemnets a buch of traits to it.
declare_array_real!;
// Create the actual array.
let mut x = new_from_i32;
assert_eq!;
// Do some math with the arrays.
let y = new_from_f32;
x = x/y;
assert_eq!;