8. myVect = [-12, -10, -8, -6, -4, -2, 0, 2, 4, 6, 8] is a row vector. Show how to convert myVect to a column vector.
9. Let there be two vectors a1 = [7, 1, 13] and a2 = [4, 2, 1].
a. bl = 3 * a2 * b1 is
b. bl = a1 + a2 * bl is
c. bl = a1 * a2; bl is
d. b1 = a1.^2; bl is
e. bl = a2^3 / 2 * b1 is
f. bl = a1 * a2 * bl is
g. Is a1 * a2 the same as a1 . a2?