Get index of smallest vlaue in each cell of cell array

1 view (last 30 days)
I have a cell array with e.g. 40x1 cell and I want for each cell the index of the smallest value. i think smth like find(min(..)). but when i try it with this i allways get the index 1 ...thank you for your help

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 15 Oct 2019
Edited: Andrei Bobrov on 15 Oct 2019
Let cell_array - your cell array (40 x 1).
cellfun(@(x)find(min(x) == x),cell_array)

More Answers (0)

Categories

Find more on Multidimensional Arrays 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!