concision-math 0.1.19

Concision is a toolkit for designing machine-learning models in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
    Appellation: signal <module>
    Contrib: @FL03
*/
//! # Signal Processing
//!
//! This module contains functions for signal processing such as convolution, filtering, and Fourier transforms.

#[cfg(feature = "std")]
pub mod fourier;

#[allow(unused_imports)]
pub(crate) mod prelude {
    #[cfg(feature = "std")]
    pub use super::fourier::prelude::*;
}