keep index of omited array

1 view (last 30 days)
NA
NA on 24 Mar 2019
Answered: madhan ravi on 24 Mar 2019
A={[1,2,3,4,5],[1,3],[1],[1,3,4,5,6,7,89,0],[1,3],[1,3,4,5],[4,6]};
N = cellfun(@length,A) ;
A(N==2) = [];
I want to have index of length 2
result=[2,5,7]
I use this code but have error
index = cellfun(@(m) find(m(N==2)),A,'uni',0);

Accepted Answer

madhan ravi
madhan ravi on 24 Mar 2019
find(N==2)

More Answers (0)

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!