Find maximum value of each row in a double matrix
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ivan Mich
le 21 Fév 2021
Modifié(e) : KALYAN ACHARJYA
le 21 Fév 2021
I have a matrix A double with columns and rows. All the data of A are numbers. I would like to find the maximum value of each row in this matrix.
I tried:
for i=length(A)
MAXIMUMO(i)=max(A(i,:))
end
But it keep onle the last row maximum, whereas the rest data are zero.
Could you please help me?
0 commentaires
Réponse acceptée
KALYAN ACHARJYA
le 21 Fév 2021
Modifié(e) : KALYAN ACHARJYA
le 21 Fév 2021
"I would like to find the maximum value of each row in this matrix"
max_row=max(matrix')
%............Note on transpose
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!