fcwt 0.1.3

Fast Continuous Wavelet Transforms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub type Float = f32;
pub type Complex = rustfft::num_complex::Complex<Float>;

const IPI4: Float = 0.75112554446;

pub mod fft;
pub mod wavelet;
pub mod scales;
pub mod fcwt;
pub mod result;

pub mod util;

pub use wavelet::MorletWavelet;
pub use scales::{Scales, LinFreqs};
pub use fcwt::FastCwt;
pub use result::CwtResult;