basic_dsp 0.4.3

Digital signal processing based on real or complex vectors in time or frequency domain. Vectors come with basic arithmetic, convolution, Fourier transformation and interpolation operations. The vectors are optimized for sizes of a couple of thousand elements or more.
Documentation
1
2
3
4
5
6
#!/usr/bin/env bash
# Runs rustc and enables SIMD CPU features
# Choose one of the two rustc.exe calls depending on your CPU architecture

#rustc -C target-cpu=native -C target-feature=+sse2,+sse3,+avx2,+avx $@
rustc -C target-cpu=native -C target-feature=+sse2,+sse3 $@