compare between vector and cell
2 次查看(过去 30 天)
显示 更早的评论
Dear all, I have one vector (b) and one cell (a) as shown below: How I know how many times each number in vector b repeat it in a.
a=[{[1,9,79,3] [2,29,16,7,3] 3 [4,74,3] [5,73,79,3] [6,56,3] [7,3]}]
b=[ 79 3 74 10];
the expect result should be;
result= [ 2 7 1 0];
Thanks alot
采纳的回答
KSSV
2016-12-30
a=[{[1,9,79,3] [2,29,16,7,3] 3 [4,74,3] [5,73,79,3] [6,56,3] [7,3]}] ;
b=[ 79 3 74 10];
result= [ 2 7 1 0];
a_mat = cell2mat(a) ;
for i = 1:length(b)
result(i) = length(find(a_mat==b(i)))
end
更多回答(2 个)
Stephen23
2016-12-30
A much simpler solution:
>> a = {[1,9,79,3],[2,29,16,7,3],3,[4,74,3],[5,73,79,3],[6,56,3],[7,3]};
>> b = [79,3,74,10];
>> sum(bsxfun(@eq,[a{:}],b(:)),2)
ans =
2
7
1
0
skysky2000
2016-12-30
编辑:Stephen23
2016-12-30
1 个评论
Stephen23
2016-12-30
@skysky2000: that is not a good idea: naming variables dynamically will make your code slow, buggy, and hard to follow. Read this to know why:
A much better solution is to learn to use indexing, which is fast and efficient.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!