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_hidden.m
f = inline('(1./(eps+abs(1-z.^4))).*(abs(1-z.^4)>0.01)+10*(abs(1-z.^4)<=0.01)');
f = inline('sin(abs(z)/20).*exp(-abs(z))');
x= linspace(-2, 2, 40);
[xx, yy]= meshgrid(x);
zz = f(xx+i*yy);
subplot(1,2,1)
mesh(xx,yy,zz); colormap(gray);view(45,37.5)
title('\bfcach', 'fontsize', 18)
subplot(1,2,2)
mesh(xx,yy,zz); colormap(gray);view(45,37.5)
hidden off
title('\bfnon cach', 'fontsize', 18)

Contact us at files@mathworks.com