what mean ,hist word in matlab ?
18 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
what mean ,hist word in matlab ?
0 Kommentare
Akzeptierte Antwort
Wayne King
am 2 Mär. 2013
Bearbeitet: Wayne King
am 2 Mär. 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);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!