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_and.m
x = [ 0 1 2 0 4 0]
y = [ 4 3 0 2 1 0]
a = x & y          % et logique
b = x | y          % ou logique
d = xor(x,y)       % ou exclusif
e = ~x             % non logique
f = x < y          % infrieur
g = x <= y         % infrieur ou gal
h = x ~= y         % diffrent
i = x == y         % gal

Contact us at files@mathworks.com