I am trying for several hours to calculate a boolean AND operation in Octave. It return a wrong number.
I want to calculate following numbers: result = 4037 & 63 result should be 5 but i get 1.
I also tried result = and(4037, 63) but i get 1 again
Why is this happening?
resultis logical rather than double.