Digital Signal Processing

Rust Crates.io Crates.io docs.rs

dsp is an early-stage open-source project. It means that API can change at any time. If you think that this library can help you, then let me know. We can discuss future direction and try to stabilize the API.

The folder examples contains demo programs which shows how to use this library.

Features

Signal generators

Signals generators are nodes with the state. This allows to generate continuos signal across multiple buffers. Implemented generators:

Filters

Window functions

Frequency domain

Runtime

There is minimal support for runtime. Runtime is designed as a graph of nodes. Node is a single computation which takes buffer as an input and generate data to provided output buffer. It means that node do not allocate memory for data. There are 3 types of node: * SourceNode - Generate new data * ProcessingNode - Processing data between buffers * SinkNode - Takes data from buffer and consumes it.

License

Licensed under either of

at your option.

Contributions

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.