How do I plot the first four Chebychev polynomials in MATLAB?
Mostrar comentarios más antiguos
How do I plot the first four Chebychev polynomials in MATLAB?
Respuesta aceptada
Más respuestas (1)
Paulo Silva
el 3 de Mzo. de 2011
clf;hold all;
min=-1;max=1;points=1000;
x=linspace(min,max,points);
t0=1+0*x;
plot(x,t0)
t1=x;
plot(x,t1)
t2=2.*x.^2-1;
plot(x,t2)
t3=4.*x.^3-3*x;
plot(x,t3)
legend('t0=1','t1=x','t2=2*x^2-1','t3=4*x^3-3*x')
Categorías
Más información sobre Polynomials en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!