Count the number of times a value occurs in a specific of an array
330 次查看(过去 30 天)
显示 更早的评论
Given a array, is there any way to count the number of times a value occurs within a specific row of that array?
For example, if I have a array:
A=[1,2,5,2,3,4,2; 4,2,1,5,3,2,3; 1,4,2,3,2,2,1];
I want to know how many times the value '2' occurs in the second row
Thanks
0 个评论
采纳的回答
Azzi Abdelmalek
2014-7-17
编辑:Azzi Abdelmalek
2014-7-17
A=[1,2,5,2,3,4,2; 4,2,1,5,3,2,3; 1,4,2,3,2,2,1]
sum(A(2,:)==2)
%or
nnz(A(2,:)==2)
2 个评论
更多回答(2 个)
Image Analyst
2014-7-17
In general, you can use histc() to find the counts for all of the numbers in one shot:
A=[1,2,5,2,3,4,2; 4,2,1,5,3,2,3; 1,4,2,3,2,2,1];
edges = unique(A)
counts = histc(A(:), edges)
In the command window:
edges =
1
2
3
4
5
counts =
4
8
4
3
2
Geoff Hayes
2014-7-17
Try the following to find the number of times '2' occurs in the second row
length(find(A(2,:)==2))
1 个评论
Matz Johansson Bergström
2014-7-17
or the shorter and more to the point
sum( A(2,:)==2 )
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!