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

 Respuesta aceptada

madhan ravi
madhan ravi el 23 de Mayo de 2019

0 votos

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

Más respuestas (1)

Categorías

Productos

Versión

R2016a

Etiquetas

Preguntada:

el 23 de Mayo de 2019

Respondida:

el 23 de Mayo de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by