How to find the index of any maximum matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
vimal kumar chawda
am 9 Jul. 2021
Kommentiert: DGM
am 11 Jul. 2021
I have matrix X=radn(20)
I need the index or position in column and row of the maximum value.
X =rand(20)
How can I ?
2 Kommentare
Image Analyst
am 11 Jul. 2021
Wow, 107 tags, if I conted correctly. I think that must be a reconrd. It must have taken you more time to enter all those than to just look up max() in the help. I'll show you how to do it in my answer below.
Stephen23
am 11 Jul. 2021
@vimal kumar chawda: please do not add 107 completely unrelated tags to your questions.
You might not use tags, but you are not the only user of this forum, and some of us certainly do use tags.
Akzeptierte Antwort
DGM
am 9 Jul. 2021
Bearbeitet: DGM
am 9 Jul. 2021
s = [10 10];
x = randi(100,s)
[~,idx] = max(x(:)) % this gets the linear index
[row col] = ind2sub(s,idx) % if you want subscripts instead
Of course, that's only the first instance of the maximal value.
4 Kommentare
Image Analyst
am 11 Jul. 2021
Actually since his question used randn() which will give unique floating point values and only one max value, not several, your suggestion to use max() is fine.
DGM
am 11 Jul. 2021
I just used randi so that the matrix was easier to read by eye and fit better on the page. The fact that it allows for frequent duplicates was what prompted me to mention the behavior.
Weitere Antworten (1)
Image Analyst
am 11 Jul. 2021
@vimal kumar chawda, try this:
m = randi(9, 5, 5)
maxValue = max(m(:))
% Find out what rows and columns the max occurs in.
% Works even if the max occurs in more than one place
% unlike the index the second output argument of max() gives you.
[rowsOfMax, columnsOfMax] = find(m == maxValue)
You'll see:
m =
3 5 7 9 8
7 9 3 5 3
6 4 5 2 8
2 6 7 2 3
2 3 9 3 9
maxValue =
9
rowsOfMax =
2
5
1
5
columnsOfMax =
2
3
4
5
Like I said, it's a more robust solution than using max() alone.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing 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!