You are on page 1of 2

Ejercicio 1

x=[-4:4];
x1=[-2.7:2.7];
y=0.6*(x.^5)-5*(x.^3)+9*x+2
y1=0.6*(x1.^5)-5*(x1.^3)+9*x1+2
hold on
plot(x,y,'b')
plot(x1,y1,'g')
hold off

You might also like