**This is an old revision of the document!** ----
====== Math 445 HW5 ====== **Problem 1:** Given the vectors x=[3 7 2 9 0] and y=[7 10 2 8 13], what would be the Matlab output for the following expressions? Think through what the answer should be, write it down, and then try it out in Matlab. If you got anything wrong, figure out what your mistake was and why Matlab gave the answer it did. <code> (a) x > y (b) y < x (c) x == y (d) x <= y (e) y >= x (f) x & y (g) x & (~y) (h) (~x) & (y) (i) x | y (j) xor(x,y) (k) (x > y) & (y < x) </code>