IN MATLAB Which of the following would extract 8 from the ma
IN MATLAB:
Which of the following would extract 8 from the matrix shown below? Mat = 3 4 5 8 9 9 7 2 7 y = mat(1, 2); y = mat(2, 1); y = mat[1, 2]; y = mat[2, 1]; None of the aboveSolution
Now here 8 is at row 2 and colum 1 hence we need to pass on indices as 2,1
so option second mat(2,1) will extract 8 from the given matrix.
![IN MATLAB: Which of the following would extract 8 from the matrix shown below? Mat = 3 4 5 8 9 9 7 2 7 y = mat(1, 2); y = mat(2, 1); y = mat[1, 2]; y = mat[2, 1 IN MATLAB: Which of the following would extract 8 from the matrix shown below? Mat = 3 4 5 8 9 9 7 2 7 y = mat(1, 2); y = mat(2, 1); y = mat[1, 2]; y = mat[2, 1](/WebImages/6/in-matlab-which-of-the-following-would-extract-8-from-the-ma-989238-1761508504-0.webp)