concision-math 0.1.21

Concision is a toolkit for designing machine-learning models in Rust.
Documentation
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(all(feature = "complex", feature = "std"))]
pub mod fourier;

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