Finding the mean value for five maximum number in matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Ali Noori
il 20 Gen 2015
Commentato: Star Strider
il 20 Gen 2015
Hi guys, I have (1*9) matrix below, I 'd like to calculate mean value for max 5 number in this matrix can anyone help me?
Regards
0 Commenti
Risposta accettata
Star Strider
il 20 Gen 2015
This works:
x = [20 19 1 20 21 22 4 2 1];
xs = sort(x,'descend');
max5mean = mean(xs(1:5))
produces:
max5mean =
20.4
Più risposte (1)
Chad Greene
il 20 Gen 2015
Modificato: Chad Greene
il 20 Gen 2015
X_sorted = sort(X);
mean5 = mean(X_sorted(1:5),'descend');
0 Commenti
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!