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

直方图

时间:2018-08-25 19:01:32      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:atl   比较   默认   com   matlab   tac   img   没有   info   

%% bar bar3 竖直  bar(  ,‘style‘)  group 默认,stack 堆叠

Income=[0.5,0.7,0.8;0.7,0.8,0.4;0.4,0.3,0.9;0.3,0.6,0.9;0.2,0.1,0.6];
subplot(221)
bar(Income,‘group‘);title(‘group‘)
subplot(222)
bar(Income,‘stack‘);title(‘stack‘)   %第二个的高度=第一个数+第二个数
subplot(223)
barh(Income,‘stack‘);title(‘stack‘)
subplot(224)
bar(Income,1);title(‘Width=1‘)  % 比较第一张图,width=1时,条形之间没有间距

  技术分享图片

直方图

标签:atl   比较   默认   com   matlab   tac   img   没有   info   

原文地址:https://www.cnblogs.com/Airboy1/p/9534653.html

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