List of maximum number in the matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Moe
le 26 Mai 2014
Réponse apportée : Star Strider
le 26 Mai 2014
Hi everyone,
Suppose I have a matrix:
a = [3;1;4;2;3;4;1;4;3;1;2;4];
Then I want matrix b to be:
b = [3;6;8;12]
- Matrix b is included the rwo number of all max number in the matrix a, e.g. row(3)=4; row(6)=4; row(8)=4; row(12)=4;
Can anyone please help me?
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 26 Mai 2014
a = [3;1;4;2;3;4;1;4;3;1;2;4];
idx=find(ismember(a,max(a)))
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Resizing and Reshaping Matrices 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!