pub type FourierFit<'data, T = f64> = CurveFit<'data, FourierBasis<T>, T>;Expand description
Fourier series curve
Uses a Fourier series basis, which is particularly well-suited for modeling periodic functions. The basis functions include sine and cosine terms, allowing for effective representation of oscillatory behavior.
Aliased Typeยง
pub struct FourierFit<'data, T = f64> { /* private fields */ }