hist & histogram which toolbox
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Adam
el 18 de Mzo. de 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.
Respuestas (1)
Star Strider
el 18 de Mzo. de 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 comentarios
Star Strider
el 18 de Mzo. de 2016
My pleasure.
The hist function should work well enough for you. There isn’t a lot of difference between them.
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!