aether-primitives - a software radio framework powered by rust

What is aether?

Aether is designed to ease development of SDR applications by providing convenient (low-level) building blocks for common operations.

Examples

Core operations are implemented in the form of the VecOps trait implemented for Vecs/Slices of the C compatible num::Complex (cf32 for short).

```rust // #[macrouse] // includes the assertevm macro // extern crate aetherprimitives; // use aetherprimitives::{cf32, vecops::VecOps}; // The main sample type is cf32 which is a type alias for num::Complex let mut v = vec![cf32::new(2.0, 2.0); 100]; let twos = v.clone(); let ones = vec![cf32::new(1.0, 1.0); 100];

let correct = vec![cf32::new(1.0, -1.0); 100];

v.vecdiv(&twos) .vecmul(&twos) .veczero() // zero the vector .vecadd(&ones) .vecsub(&twos) .vecclone(&ones) .vecmutate(|c| c.im = -1.0) .vecconj() .vec_mirror(); // mirror swaps elements around the midpoint of the array

/// ensure each element's error vector magnitude vs the correct vector is below -80dB assert_evm!(&v, &correct, -80.0); ```

Design Decisions

Implemented functionality

TODO

License

Mozilla Public License 2.0