码迷,mamicode.com
首页 > 其他好文 > 详细

matlab画柱状图

时间:2016-08-13 01:19:52      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

论文中需要画图进行比较,感觉还是matlab画起来比较方便,先把自己画的图及matlab代码放上。

y=[300 311;390 425; 312 321; 250 185; 550 535; 420 432; 410 520;];
b=bar(y);
grid on;
ch = get(b,‘children‘);
set(gca,‘XTickLabel‘,{‘0‘,‘1‘,‘2‘,‘3‘,‘4‘,‘5‘,‘6‘})
set(ch,‘FaceVertexCData‘,[1 0 1;0 0 0;])
legend(‘基于XXX的算法‘,‘基于YYY的算法‘);
xlabel(‘x axis ‘);
ylabel(‘y axis‘);

matlab画柱状图

标签:

原文地址:http://www.cnblogs.com/wangh0802PositiveANDupward/p/5767025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!