How do i get the position of the minimum value in at 3 dimensional array?

1 visualización (últimos 30 días)
maarten de Jong
maarten de Jong el 29 de Dic. de 2016
Editada: Matt J el 29 de Dic. de 2016
If I have a 3 dimensional array, an I want to find the position of the minimal value of that array, preferably in vector form, what command do I use?

Respuestas (1)

Matt J
Matt J el 29 de Dic. de 2016
Editada: Matt J el 29 de Dic. de 2016
minval=min(yourArray(:));
[xloc,yloc,zloc] = ind2sub(size(yourArray), find(yourArray==minval) )

Categorías

Más información sobre Data Types en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by