No BSD License  

Highlights from
aide mémoire Matlab (seconde édition)

from aide mémoire Matlab (seconde édition) by Jean-Thierry
les m-fichiers de l'aide mémore Matlab seconde édition

ex_mesh.m
f = inline('(x+y).*sin(pi*sqrt(x.^2+y.^2))', 'x', 'y');
x = linspace(-3,3,31);
[xi yi]=meshgrid(x); zi = f(xi,yi);
subplot(1,4,1); mesh(xi,yi,zi); colormap(gray);
subplot(1,4,2); meshc(xi,yi,zi); colormap(gray);
subplot(1,4,3); meshz(xi,yi,zi); colormap(gray);
subplot(1,4,4); waterfall(xi,yi,zi); colormap(gray);  

Contact us at files@mathworks.com