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_any.m
x = [ 0 1 2 3 4]
xx = [x; [0 3 0 2 1]]
a = any(x)
b = any(xx) % identique  b = any(xx,1)
c = any(xx,2)
d = any(any(xx(:, 2:4)))
e = any(any(xx(:, [2,4,5])))

Contact us at files@mathworks.com