No BSD License
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