Find cell with nearest value

5 views (last 30 days)
Setiadi Suriana
Setiadi Suriana on 23 May 2019
Answered: Setiadi Suriana on 23 May 2019
I have cell array 1x406 which each cell has a value. And I want to find a cell with the value nearest to 0. In this case i want output is 175. Thank youVal.JPG

Accepted Answer

madhan ravi
madhan ravi on 23 May 2019
C = [yourcell{:}]; % assuming each cell contains a scalar
[Value,Where] = min(C(C>0 & C<1))

More Answers (1)

Setiadi Suriana
Setiadi Suriana on 23 May 2019
It is solved. Thank you

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products


Release

R2016a

Community Treasure Hunt

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

Start Hunting!