项目作者: klangner

项目描述 :
Digital Signal Processing
高级语言: Rust
项目地址: git://github.com/klangner/dsp.rs.git
创建时间: 2017-02-28T13:22:16Z
项目社区:https://github.com/klangner/dsp.rs

开源协议:Other

下载


Digital Signal Processing

Rust
Crates.io Crates.io docs.rs

This library is focused in working with block of data not on real time processing.

If you are looking for a realtime processing library then there is already great library for it
https://github.com/FutureSDR/FutureSDR

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:

  • Impulse
  • Step
  • Sinusoid
  • Triangle
  • Square
  • Chirp
  • Noise

Filters

  • Biquad
  • Leaky Integrator (Exponential Smoothing)

Window functions

  • Rectangular
  • Triangular
  • Welch
  • Sine
  • Hann
  • Hamming
  • Blackman

Frequency domain

  • FFT forward and inverse using RustFFT crate.
  • Find peak frequency

Time domain

  • Frequency shifter
  • FM demodulation

License

Licensed under Apache License, Version 2.0

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.