What are the values of the following MATLAB expressions Cons
     What are the values of the following MATLAB expressions? Consider 5 eases below.  1 
 
  
  Solution
1. 1 < 5 | 3 - 3 / 5
= 1 < 5 | 3 - 0.6
= 1 < 5 | 2.4
= 1 | 2.4
= 1.
Therefore, the answer is: 1.
2. 1 < (5 < 2 & 9) & 2 ^ 3
= 1 < (0 & 9) & 2 ^ 3
= 1 < 0 & 2 ^ 3
= 1 < 0 & 8
= 0 & 8
= 0.
Therefore, the answer is 0.
3. -(1 == 2 | 5 ~= 3) * 100
= -(0 | 5 ~= 3) * 100
= -(0 | 1) * 100
= -1 * 100
= -100.
Therefore, the answer is: -100.
4. 2 <= 2 * 5 >= 6 / 3
= 2 <= 10 >= 6 / 3
= 2 <= 10 >= 2
= 1 >= 2
= 0.
Therefore, the answer is: 0.
5. -3 & 8 > 5 * (5 + 7 | 9)
= -3 & 8 > 5 * (12 | 9)
= -3 & 8 > 5 * 1
= -3 & 8 > 5
= -3 & 1
= 1
Therefore, the answer is: 1.


