필터 지우기
필터 지우기

Mean of highest n numbers for each row in a matrix

조회 수: 1 (최근 30일)
Ulrik Nash
Ulrik Nash 2011년 7월 15일
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
  댓글 수: 2
Friedrich
Friedrich 2011년 7월 15일
Litle typo:
A = sort(Matrix,2,'descend');
Sean de Wolski
Sean de Wolski 2011년 7월 15일
In your words, doh!

댓글을 달려면 로그인하십시오.

추가 답변 (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