Filter löschen
Filter löschen

the dimension of matrix minimum

2 Ansichten (letzte 30 Tage)
Farid sjdclkjas
Farid sjdclkjas am 5 Aug. 2013
Hi, I know that if we have a matrix "A" we can get the minimum value of this matrix by min(A), but is it possible to get the dimension of this minimum value? for example if we have a 30*90 matrix "A" and assume that the minimum value is A(25,81), how can we get these numbers ==>(25,81)?
thanks,

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 5 Aug. 2013
Bearbeitet: Andrei Bobrov am 5 Aug. 2013
[ii,ii] = min(A(:));
[i1,j1] = ind2sub(size(A),ii);
  1 Kommentar
Jan
Jan am 5 Aug. 2013
@Farid sjdclkjas: Whenever you have questions concerning a command, reading the documentation is a good idea:
doc min

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by