Textbooks.elsevier.com - tools for all your teaching needs.

16 15 5 18 8 1 34) Create a 4 x 2 matrix of all zeros and store it in a variable. Then, replace the second row in the matrix with a vector consisting of a 3 and a 6. >> mymat = zeros(4,2) mymat = 0 0. 0 0. 0 0. 0 0 >> mymat(2,:) = [3 6] mymat = 0 0. 3 6. 0 0. 0 0. 35) Create a vector x which consists of 20 equally spaced points in the range ... ................
................