Basic Instruction of MATLAB
1) clc (clear command window) :- syntax : clc description :- when user writes clc in program or in command window then the content of command window will be cleared. After using the clc user can not undo or get back the erased data of command window. 2) clear all :- syntax : clear all description :- when user writes clear all in program or in command window then the content of workspace will be cleared. After using the clear all user can not undo or get back the erased data of workspace. 3) close all :- syntax : close all description :- when user writes close all in program or in command window then the some window such as figure window will be closed. After using the close all user can not undo or get back the closed window. 4) plot :- syntax : plot(a) description :- This command is used to plot some waves and some data. This command plot the data or wave in the x-y plane. Example:- 4) sub plot :- syntax : subplot(r,c,p) description :