hist & histogram which toolbox
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mathworks.com states 'hist is not recommended. Use histogram instead.' However when I use example given I get the error below. I suspect I don't have the right toolbox, but strangely Google searches don't answer 'which toolbox has histogram' DO I need another toolbox?
X = randn(1000,1); h = histogram(X) Undefined function 'histogram' for input arguments of type 'double'.
1 commentaire
Adam
le 18 Mar 2016
It should be in the main toolbox if you are using > R2014b. If you are using an earlier version then it hadn't been introduced in the main toolbox. I don't know if it existed in some other toolbox before then though.
Réponses (1)
Star Strider
le 18 Mar 2016
Be careful of the documentation you’re reading! The current online documentation is for R2016a. If you have R2016a, you should have histogram. If you have R2013b or earlier, you won’t.
In your Command Window, type:
doc hist
doc histogram
and see what the Help Browser does.
2 commentaires
Star Strider
le 18 Mar 2016
My pleasure.
The hist function should work well enough for you. There isn’t a lot of difference between them.
Voir également
Catégories
En savoir plus sur Histograms dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!