Está en la página 1de 4

GRAFICO DE: X*Y*sin(X)

x=-15:0.03:15;
y=-10:0.02:10;
[X,Y]=meshgrid(x,y);
Z=X*Y*sin(X);
mesh(X,Y,Z)

GRAFICO DE: (sin(X)-sin(Y))./(X-Y)

x=-15:0.03:15;
y=-10:0.02:10;
[X,Y]=meshgrid(x,y);
Z=(sin(X)-sin(Y))./(X-Y);
mesh(X,Y,Z)

GRAFICO DE: ((3*X)-sin(Y.^-3-23)-cos(X.^4-Y.^2))./


(X.^2+Y.^2).^-2;
x=-15:0.03:15;

y=-10:0.02:10;
[X,Y]=meshgrid(x,y);
Z=((3*X)-sin(Y.^-3-23)-cos(X.^4-Y.^2))./(X.^2+Y.^2).^-2;
mesh(X,Y,Z)

GRAFICO DE: atan(X).* atan(Y);

x = (-5: 0.1: 5);

y = (-5: 0.1: 5);


[X,Y] = meshgrid(x,y);
Z = atan(X).* atan(Y);
mesh(X,Y,Z)

También podría gustarte