Effacer les filtres
Effacer les filtres

find max value in a matrix

1 vue (au cours des 30 derniers jours)
Ace_ventura
Ace_ventura le 22 Fév 2015
Commenté : Star Strider le 22 Fév 2015
I have a=[ 1 2 3; 7 8 9; 4 5 6; 2 1 3]. I want to find max value in the matrix 'a' but i don't want it to consider second row. So I should get 6 as the answer. How to do it?

Réponses (1)

Star Strider
Star Strider le 22 Fév 2015
This works:
a=[ 1 2 3; 7 8 9; 4 5 6; 2 1 3];
a_134 = a([1 3 4],:);
max_a134 = max(a_134(:));
  2 commentaires
Ace_ventura
Ace_ventura le 22 Fév 2015
Thanks Man. But is there a way in which i don't have to define a_134 . I am looking for the max value without defining any sub matrix
Star Strider
Star Strider le 22 Fév 2015
In that instance, just nest two max calls:
max_a134 = max(max(a([1 3 4],:)))

Connectez-vous pour commenter.

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!

Translated by