直方图是表示数据集中值分布的曲线图。为了生成直方图, 将数据集中的值范围划分为均匀间隔的bin, 并确定落入每个bin中的数据值的数量。
句法
n=hist(y) // It bins the elements in vector y into ten equally spaced containers and returns the number of items in each container as a row vector.
例子
Histogram of 50 randomly distributed numbers between 0 and 1.y=randn (50, 1);
hist (y)
【MATLAB函数hist()】输出
文章图片
推荐阅读
- MATLAB函数area()
- MATLAB函数barh()
- MATLAB函数errorbar()
- MATLAB函数plotyy()
- MATLAB 函数fill()
- MATLAB函数Bar()
- MATLAB绘图操作详解
- MATLAB 2D极坐标绘图Plots()
- MATLAB 函数Semilogy()