hist & histogram which toolbox
14 次查看(过去 30 天)
显示 更早的评论
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 个评论
Adam
2016-3-18
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.
回答(1 个)
Star Strider
2016-3-18
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 个评论
Star Strider
2016-3-18
My pleasure.
The hist function should work well enough for you. There isn’t a lot of difference between them.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!