1、绘制二维图
plot(Data,'r.');%用红色的点将数据绘制出来
2、设置坐标轴范围
axis([XMIN XMAX YMIN YMAX]) ;%sets scaling for the x- and y-axes on the current plot。
3、设置图片标题
title('My Title',Name,Value);
'FontSize'
— Font size 11
(default) | scalar value greater than 0
4、设置坐标轴标题
xlabel('Population');