histogram function not working
13 次查看(过去 30 天)
显示 更早的评论
I am trying to use the histogram function, and even the basic MathWorks demonstration does not work in my Matlab
x = 2*randn(5000,1) + 5;
histogram(x,'Normalization','pdf')
I get the following mistake: Undefined function 'histogram' for input arguments of type 'double'.
Error in TEST2 (line 2) histogram(x,'Normalization','pdf') >>
0 个评论
采纳的回答
the cyclist
2015-10-6
Those commands produce a histogram for me (R2015b). The histogram command is relatively new, introduced a couple versions ago. Do you have an older version? What do the commands
which histogram
and
doc histogram
do for you?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Histograms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!