what mean ,hist word in matlab ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
what mean ,hist word in matlab ?
0 Commenti
Risposta accettata
Wayne King
il 2 Mar 2013
Modificato: Wayne King
il 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);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Histograms in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!