Filter löschen
Filter löschen

Mean of highest n numbers for each row in a matrix

2 Ansichten (letzte 30 Tage)
Ulrik Nash
Ulrik Nash am 15 Jul. 2011
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

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 15 Jul. 2011
A = sort(Matrix,2,'descend'); %sort it so big numbers first
B = mean(A(:,1:n),2) %mean them
  2 Kommentare
Friedrich
Friedrich am 15 Jul. 2011
Litle typo:
A = sort(Matrix,2,'descend');
Sean de Wolski
Sean de Wolski am 15 Jul. 2011
In your words, doh!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by