1.
Suppose that
A is a matrix. Describe, in words, the following objects:-
A(3, :) -
A(:, end-2) -
A(1:2, end-1:end) -
A(1:2:end, 1) -
A(:, end:-1:1)
A is a matrix. Describe, in words, the following objects:A(3, :)A(:, end-2)A(1:2, end-1:end)A(1:2:end, 1)A(:, end:-1:1)x = (first 5 digits of your SUID); y = (all entries of x except first); z = (all entries of x except last); u = (the sum of vectors y and z); v = (the scalar product of vectors y and z, also known as the dot product in Calculus);
A be some 3 by 3 matrix filled with numbers 1,2,…,9x be the product of A and a row vector with all entries equal to 1 (think about the correct order of multiplication).y be the product of A and a column vector with all entries equal to 1.x? In other words, what information about A do we get from the entries of x?y?