01 subplot :h = subplot(m,n,p)/subplot(mnp) 将figure划分为m×n块,在第p块创建坐标系,并返回它的句柄。当m,n,p<10时,可以简化为subplot(mnp)或者subplot mnp ;
02 figure % 创建一个新的窗口,所有参数采用默认;
03