A wiggly function and its best approximations » Chebfun
Ken Lord, whose doctoral supervisor was the Chebyshev technology wizard Charles Clenshaw, has explored functions of the form f(x)= T m (x)+ T m+1 (x)+⋯+ T n (x), 𝑓 ( 𝑥 ) = 𝑇 𝑚 ( 𝑥 ) + 𝑇 𝑚 + 1 ( 𝑥 ) + ⋯ + 𝑇 𝑛 ( 𝑥 ) , where T k 𝑇 𝑘 is the Chebyshev polynomial of degree k 𝑘 , as challenging functions for minimax approximation by polynomials of lower order. We can construct such functions in a single Chebfun command: For example, here we plot f(30,40) and its best approximation of degree 29 29 : Here are f(200,220) and its best approximation of degree 199 199 : © Copyright 2025 the University of Oxford and the Chebfun Developers.
Ken Lord, whose doctoral supervisor was the Chebyshev technology wizard Charles Clenshaw, has explored functions of the form $$ f(x) = T_m(x) + T_{m+1}(x) + \cdots + T_n(x), $$ where $T_k$ is the Chebyshev polynomial of degree $k$, as challenging functions for minimax approximation by polynomials of lower order. We can construct such functions in a single Chebfun command: fmn = @(m,n) sum(chebpoly(m:n),2); For example, here we plot f(30,40) and its best approximation of degree $29$: LW = 'linewidth'; FS = 'fontsize'; fs = 14; tic, m = 30; n = 40; f = fmn(m,n); subplot(2,2,1),…
Explore this link on the map →saved by
related reading
- Chebyshev Approximation and How It Can Help You Save Money, Win Friends, and Influence People - Jason Sachsembeddedrelated.com
- Chebyshev Polynomial of the First Kind -- from Wolfram MathWorldmathworld.wolfram.com
- Taylor's theorem - Wikipediaen.wikipedia.org
- Padé approximant - Wikipediaen.wikipedia.org
- On the Link Between Polynomials and Optimization, Part 1fa.bianp.net
- Functions are Vectorsthenumb.at
- What's new | Updates on my research and expository papers, discussion of open problems, and other maths-related topics. By Terence Taoterrytao.wordpress.com
- Kolmogorov–Arnold representation theorem - Wikipediaen.wikipedia.org
- (KANs part 1) An introduction to B-splinesrohangautam.github.io
- Polynomial Regression - An Alternative For Neural Networks? | Towards Data Sciencetowardsdatascience.com
- A Primer on Bézier Curvespomax.github.io
- Fourier analysis - Wikipediaen.wikipedia.org