Couldn't find what's wrong

a=cell(1,3)
a{2}= [2 4 5]
for i=1:3
if numel(a{i})==3
b=cellfun(@(q) q==a(i),a,'un',1)
end
end
I tried to find index of the matrix which have a certain number of elements in a cell.

 Accepted Answer

madhan ravi
madhan ravi on 22 Mar 2019
Edited: madhan ravi on 22 Mar 2019
q = 3;
b = find( cellfun( @numel, a ) == q )
%or
b = find( cellfun( 'prodofsize', a ) == q )

2 Comments

thanks but what is q=3 for ?
Refers to number of elements you can change it accordig to your desire.

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!