basic_dsp icon indicating copy to clipboard operation
basic_dsp copied to clipboard

Basic DSP vector operations for Rust.

Results 9 basic_dsp issues
Sort by recently updated
recently updated
newest added

Right now _basic_dsp_ uses its own SIMD abstractions which are built on _simd_. The only reason for that is that at the time that code was written nothing else was...

enhancement
help wanted

The matrix crate could likely benefit from const generics as soon as this feature is stable: https://github.com/rust-lang/rust/issues/44580

enhancement
help wanted

There are some (23 Aug 16 it's exactly 8) sections in the documentation which are marked with _Unstable_. The corresponding code needs review, further tests and likely improvement. Some examples:...

enhancement
help wanted

I tried my best to provide a complete and helpful documentation (http://liebharc.github.io/basic_dsp/basic_dsp/). But it for sure has lots of room for improvement so I really would appreciate if someone could...

enhancement
help wanted

The lib comes so far with two convolution functions: http://liebharc.github.io/basic_dsp/basic_dsp/conv_types/index.html There are a lot more common convolution functions and it would be nice to have some of them. To my...

enhancement
help wanted

The lib comes so far with two window functions: https://liebharc.github.io/basic_dsp/basic_dsp/window_functions/index.html There are a lot more common FFT windows and it would be nice to have a couple of them. In...

enhancement
help wanted

packed_simd is now again being published under its original name.

Hi, I have the following test `main.rs` which which I tried to convole the raised sin with some signal. When this is carried out, I see that apparently only the...

help wanted

My program panics on `get_magnitude_squared` - it accesses out of range data. `.data.len()` also shows excessive size after `DspVec` construction using `to_complex_time_vec`. But adding `.shrink_to_fit();` on `Vec`s prior to using...

bug
help wanted