find index of last 5 largest values in cell array

조회 수: 3 (최근 30일)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015년 8월 24일
댓글: Star Strider 2015년 8월 24일
I have a cell array of numbers a = {5 ; 6 ; 8 ; 8 ; 10; 1 ; 15 ; 25 ; 10 ; 35 ; 45 ; 3}
I need to find the index of last five largest values in cell array
index = 11,10,8,7,5
How can i do this ?
Thanks a lot

채택된 답변

Star Strider
Star Strider 2015년 8월 24일
This works:
[as,idx] = sort(cell2mat(a),'descend');
result = idx(1:5);
  댓글 수: 2
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015년 8월 24일
편집: Gopalakrishnan venkatesan 2015년 8월 24일
Thank you. How to avoid the repetition index , for example if my cell array consists of
a = {10,10,5,10,3,6,6,3,6,9,8}
index = 1, 10, 11 , 6, 3
Star Strider
Star Strider 2015년 8월 24일
My pleasure.
The unique function works for the second problem:
[C,idx] = unique(cell2mat(a));
result = idx(end-4:end);

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by