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

 채택된 답변

madhan ravi
madhan ravi 2019년 5월 23일

0 개 추천

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

추가 답변 (1개)

Setiadi Suriana
Setiadi Suriana 2019년 5월 23일

0 개 추천

It is solved. Thank you

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

제품

릴리스

R2016a

질문:

2019년 5월 23일

답변:

2019년 5월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by