IN MATLAB Which of the following uses of the subplot command
IN MATLAB:
Which of the following uses of the subplot command assigns the bottom-most plot in a column of three plots? subplot(3) subplot(3, 1, 3) subplot(1, 3, 3) subplot(3, 1, 1)Solution
subplot(m,n,p) divides the current figure into an m-by-n grid and creates an axes for a subplot in the position specified by p.
From above concept option 3 is the answer but it has obly one row and 3 columns.

