Finding the mean value for five maximum number in matrix
1 回表示 (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Star Strider
2015 年 1 月 20 日
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
その他の回答 (1 件)
Chad Greene
2015 年 1 月 20 日
編集済み: Chad Greene
2015 年 1 月 20 日
X_sorted = sort(X);
mean5 = mean(X_sorted(1:5),'descend');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!