当前位置:酷酷问答>百科问答>Matlab直方图(柱状图)histogram

Matlab直方图(柱状图)histogram

2024-11-03 16:20:58 编辑:zane 浏览量:524

Matlab直方图(柱状图)histogram

的有关信息介绍如下:

Matlab直方图(柱状图)histogram

Matlab中对数据进行直方图展示,使用柱状图,类似下面一条经验。

1matlab绘制直方图

这里介绍使用Matlab来对一系列数据进行直方图统计和展示。

首先生成一列数据:

aa = randn(1000,1);

h = histogram(aa);

对h进行统计,matlab自动给h进行分列。

可以指定柱状的数量:

hh = histogram(aa,10);

还可以对横坐标的范围进行控制:

hhh = histogram(aa,[-10:0.5:10]);

还可以将几列数据同时画在一张图上:

histogram(aa,30);

aaa = 1+aa;

hold on;

histogram(aaa,30);

该绘图如要加入其他要素,与plot命令相同:

title('直方图','fontsize',16);

xlabel('数值');ylabel('number');

legend('aa','aaa');

版权声明:文章由 酷酷问答 整理收集,来源于互联网或者用户投稿,如有侵权,请联系我们,我们会立即处理。如转载请保留本文链接:https://www.kukuwd.com/answer/107367.html
热门文章