Mean of highest n numbers for each row in a matrix

2 次查看(过去 30 天)
Hi Everyone,
Suppose I have a matrix A, which has r rows and c columns.
For each of the rows A, I wish to find the mean of the highest n numbers, to create B, which is a 1,c matrix, containing these means.
How can this be done?
Regards
Ulrik

采纳的回答

Sean de Wolski
Sean de Wolski 2011-7-15
A = sort(Matrix,2,'descend'); %sort it so big numbers first
B = mean(A(:,1:n),2) %mean them

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by