个性化阅读
专注于IT技术分析

MATLAB函数hist()

直方图是表示数据集中值分布的曲线图。为了生成直方图, 将数据集中的值范围划分为均匀间隔的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()

赞(0)
未经允许不得转载:srcmini » MATLAB函数hist()

评论 抢沙发

评论前必须登录!