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

采纳的回答

Star Strider
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
Chad Greene 2015-1-20
编辑:Chad Greene 2015-1-20
X_sorted = sort(X);
mean5 = mean(X_sorted(1:5),'descend');

类别

Help CenterFile Exchange 中查找有关 Spectral Measurements 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by