当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


MATLAB hist()用法及代码示例


直方图是表示数据集中值分布的图。为了绘制直方图,数据集中的值范围被分成均匀间隔的区间,并确定落入每个区间的数据值的数量。

用法

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 hist()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。