Filter löschen
Filter löschen

to find position of min value

1 Ansicht (letzte 30 Tage)
Parul
Parul am 9 Sep. 2013
i have sm array, i calculate minimum value of this array, now i want to know, the position of this minimum value in existing array. pls help

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 9 Sep. 2013
A - your array;
[v1,ii] = min(A);
[v2,jj] = min(v1);
out = [v2,ii(jj),jj];
or
[v3,ij] = min(A(:));
[i1,j1] = ind2sub(size(A),ij);
out = [v3,i1,j1];

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 9 Sep. 2013
Bearbeitet: Jan am 9 Sep. 2013
@Parul: Read the documentation for min()
  1 Kommentar
Jan
Jan am 9 Sep. 2013
Searching in the forum would reveal several similar discussions also.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Operators and Elementary Operations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by