Finding column number of maximum of an array:
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How to find the column number of numerically max number of an array:
0 Kommentare
Antworten (1)
Image Analyst
am 1 Aug. 2020
It could appear in more than one location. So do it this way:
maxValue = max(yourArray(:))
[rows, columns] = find(yourArray == maxValue)
columns will show you all the columns where the max value occurs.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Cell Arrays 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!