what mean ,hist word in matlab ?

3 次查看(过去 30 天)
what mean ,hist word in matlab ?

采纳的回答

Wayne King
Wayne King 2013-3-2
编辑:Wayne King 2013-3-2
It a frequency histogram
X = randn(1000,1);
hist(X)
It "bins" the input data and returns the number of data values that value in each bin.
You can get the actual counts and bin center with the optional output arguments:
[counts,centers] = hist(X);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by