finding the top ten values of arrary

조회 수: 2 (최근 30일)
khaled DAWOUD
khaled DAWOUD 2012년 7월 21일
Hello, I have an array a,i want to find the top ten max values and thier indexes , how i can do that , Thanks ?
  댓글 수: 1
Azzi Abdelmalek
Azzi Abdelmalek 2012년 7월 21일
if there are many equals numbers, what you want to do, take them all? in this case there will be more than 10 values.

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

채택된 답변

per isakson
per isakson 2012년 7월 21일
편집: per isakson 2012년 7월 21일
Try this:
M = magic(4);
N = 10;
[ b, ix ] = sort( M(:), 'descend' );
[ rr, cc ] = ind2sub( size(M), ix(1:N) );
for ii = 1 : N
disp( M( rr(ii), cc(ii) ) )
end
  댓글 수: 1
khaled DAWOUD
khaled DAWOUD 2012년 7월 21일
Thanks Very much , i realy appreciated you time and help

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

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 7월 21일
편집: Azzi Abdelmalek 2012년 7월 21일
% try this
a=[1 2 7 8 8 5 20 20 40 0 1 8 77 77 87 87 52 36 87 12 78]';
c=flipud(unique(sort(a))),
result=c(1:10); %top ten
ind=find(a>=c(10)) %their indices
resultat=flipud(sortrows([a(ind) ind],1))
% because there equals number , there is more than 10 classed. if you want take only %10 include this code
resultat1=resultat(1:10,:)
  댓글 수: 1
khaled DAWOUD
khaled DAWOUD 2012년 7월 21일
Thanks Very much , i realy appreciated you time and help

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

카테고리

Help CenterFile Exchange에서 Data Types에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by