sábado, 23 de febrero de 2013

EJERCICIO 31 GRAFICAS 3D EN MATLAB


>> [x,y]=meshgrid(-2:.5:2);
>> z=exp(-x.^2-y.^2);
>> plot3(x,y,z)





>> mesh(x,y,z)



>> surf(x,y,z)


>>[x,y]=meshgrid(linspace(-1,1,50));
>> z=cos((x.*y)./(x.^2+y.^2+1));
>> surf(x,y,z),colorbar






EJERCICIO 30 GRAFICAR CURVAS PARAMETRICAS CON MATLAB


>> t=linspace(-5,5,1000);
>> plot((t.*(t.^2-1))./(t.^2+1),(2*(t.^2-1))./(t.^2+1));




>>comet((t.*(t.^2-1))./(t.^2+1),(2*(t.^2-1))./(t.^2+1))

El comando COMET realiza la grafica con animación.


GRAFICAR CURVAS EN COORDENADAS POLARES

>> tetha=linspace(-pi,pi,100);
>> r=2-4*cos(tetha);
>> polar(tetha,r)





EJERCICIO 29 GRAFICAR UNA FUNCION DEFINIDA POR PARTE CON MATLAB



>> x=linspace(-2,3,3000);
>> y=(x.^2).*(x<0)+1.*((0<=x)&(x<1))+(-x+2).*(1<=x);
>> plot(x,y,'.'),grid on,title('Funcion definida a trozos');




viernes, 22 de febrero de 2013

EJERCICIO 28 DIVISIÓN DE POLINOMIOS CON MATLAB


Sea P(x)=15x^4+9x^2+8x-2 y  Q(x)=5x^2-2


>> p=[15 0 9 8 -2];
q=[5 0 -2];
[s,r]=deconv(p,q);

Polinomio Residuo
r= [0 0 0 8 4.000000000000001]

Polinomio Cociente
s=[3 0 3]