what mean ,hist word in matlab ?

4 vues (au cours des 30 derniers jours)
mina
mina le 2 Mar 2013
what mean ,hist word in matlab ?

Réponse acceptée

Wayne King
Wayne King le 2 Mar 2013
Modifié(e) : Wayne King le 2 Mar 2013
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);

Plus de réponses (0)

Catégories

En savoir plus sur Statistics and Machine Learning Toolbox dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by