Type Alias Float

Source
pub type Float = f64;
Expand description

Typedef for the floating-point data type used for most operations.

By default, all floating-point calculations are performed using f64. Enable the f32 crate feature to change this type to f32. Note that the Butterworth filter implementation will always use f64 as using f32 can cause numeric issues.