Hey,
I want to know how to perform an and operation on 2 numbers in MATLAB
ex :-
x = 31 '11111' ;
y = 23 '10111' ;
If I use the AND operation on this 2 numbers I will get
z = x AND y
z will be 23 due to AND operation
How can I do this in MATLAB ?