How do I find the cell index ??
Show older comments
I have a cell A{3}={[1 2 3 1]} {[5 6 7 5 0]} {[9 9 10 10 12]}
I want to find the the cell number that contain 12
that is A{3}
is there any code that finds the cell number??
I dont want to use any kind of loop here.
3 Comments
A={[1 2 3 1],[5 6 7 5 0],[9 9 10 10 12]}
find(cellfun(@(x) any(x==12),A))
BHUKYA VENKATESH
on 27 Jun 2022
BHUKYA VENKATESH
on 27 Jun 2022
Accepted Answer
More Answers (0)
Categories
Find more on MATLAB 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!