pub type ChebyshevFit<'data, T = f64> = CurveFit<'data, ChebyshevBasis<T>, T>;Expand description
Normalized Chebyshev polynomial curve
Uses the Chebyshev polynomials, which are orthogonal polynomials defined on the interval [-1, 1]. These polynomials are particularly useful for minimizing Runge’s phenomenon in polynomial interpolation.
Aliased Type§
pub struct ChebyshevFit<'data, T = f64> { /* private fields */ }