MATLAB - 2D Plotting
What will be the output of this MATLAB code?
subplot(1,3,2); plot(1:5, rand(1,5)); subplot(1,3,1); plot(1:5, rand(1,5)); subplot(1,3,3); plot(1:5, rand(1,5));
