Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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?

Risposte (1)

Matt J
Matt J il 29 Dic 2016
Modificato: Matt J il 29 Dic 2016
minval=min(yourArray(:));
[xloc,yloc,zloc] = ind2sub(size(yourArray), find(yourArray==minval) )

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by