Skip to main content

ChebyshevPolynomial

Type Alias ChebyshevPolynomial 

Source
pub type ChebyshevPolynomial<'data, T = f64> = Polynomial<'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 ChebyshevPolynomial<'data, T = f64> { /* private fields */ }