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_global1
function ex_global1

persistent c
global a

if isempty(c), c=1; end;
c = c+1; a = a+1;
fprintf('a et c dans ex_global1 : %d, %d\n', a, c);

Contact us at files@mathworks.com