Can I get he frequency of each value in a vector without a loop?
1 次查看(过去 30 天)
显示 更早的评论
I have a vector which contains discrete values and I want to know hte frequency of each value. I have managed to get the result using a loop but I was wondering if it is possible to speed to process up.
aa=floor((10*rand(10,1)))*10 UniqVal=0:10:100; cat = length(UniqVal); bb=zeros(1,cat); for k=1:cat bb(k)=sum(aa==UniqVal(k)); end
0 个评论
采纳的回答
更多回答(1 个)
Ingrid
2015-6-12
here you can find many useful tips: http://www.mathworks.com/matlabcentral/answers/96504-how-can-i-count-the-occurrences-of-each-element-in-a-vector-in-matlab
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!