1 条形图、面积图分别使用plot函数bar函数和area函数 例:
x=[1 2 3 4 5 6 7 8];
>> y=[10 9 18 20 25 32 25 40];
>> area(y)
hold on % %在原图上叠加新的图形
>> bar(x,y)
colormap cool % 暂未实现 colormap颜色查找表 cool 定义好的颜色
hold on % 在原图上叠加新的图形
plot(x,y,'linewidth',2,'color','r','linestyle','--')
>> hold off 取消叠加新的图形
x=[10 25 50 15];
>>