How to use for-end loops to count number of occurrences of an array?
1 次查看(过去 30 天)
显示 更早的评论
I want to know how can I count the number of occurrences of one array by using for-end loops. Pls help me.
1 个评论
Stephen23
2014-12-1
"count the number of occurrences of one array" doesn't make much sense, as an array only exists once in MATLAB's workspace. Do you mean to count the occurrences of element values within an array?
回答(2 个)
Zack Bayhan
2014-11-29
So could you do something like this
count=0;
for i=1:10
if i==1
count=count+1
end
end
0 个评论
Image Analyst
2014-11-29
"the number of occurrences of one array"??? Why would an array occur more than once ? Maybe you mean number instead of array . In that case, just take the histogram to count how many times each number occurs in an array. You can also use histc:
edges = unique(yourArray(:));
counts = histc(yourArray(:), edges);
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!