fourier-algorithms 0.1.1

Helper functions for the Fourier crate
Documentation
1
2
3
4
5
use num_traits::{Float, FloatConst, FromPrimitive, NumAssign};

/// Floating-point types used for performing fast Fourier transforms.
pub trait FftFloat: Float + FloatConst + FromPrimitive + NumAssign + Default + Clone {}
impl<T> FftFloat for T where T: Float + FloatConst + FromPrimitive + NumAssign + Default + Clone {}