

InterviewSolution
Saved Bookmarks
1. |
What is the equivalent of subplot (1, 1, 1)?(a) subplot()(b) plot(c) It is not possible(d) axesI have been asked this question in an internship interview.The question is from Presenting Results topic in portion Interacting with MATLAB of MATLAB |
Answer» RIGHT answer is (d) AXES The explanation is: While using subplot (1,1,1), we have allocated MEMORY as a 2-D matrix for only 1 graph. This is similar to the axes COMMAND which generates an empty graph. This is pre-defined in MATLAB. |
|