Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
Find maximum in matrix and show
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello guys,
I would have a question - If I have a matrix of numbers for example 50x50 (rows, columns) and matrix changes values for example 50 times - how can I plot position of these 50 maximums?
Thanks for some ideas
0 commentaires
Réponses (1)
Star Strider
le 16 Juin 2019
To get the maximum of every column of your matrix ‘M’:
colmax = max(M);
To get the maximum of every row:
rowmax = max(M,[],2);
0 commentaires
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!