how to sort a cell array in descending order ?
조회 수: 1 (최근 30일)
이전 댓글 표시
how to sort a cell array in descending order ? I have this code for cell array
ra=0;
rank=cell(50,1);
for i=1:50
for j=1:50;
if users{j,i}~='-';
ra=ra+1;
end
end
rank{i,1}=ra;
ra=0;
end
댓글 수: 0
답변 (1개)
Joseph Cheng
2014년 4월 9일
편집: Joseph Cheng
2014년 4월 9일
you can use the function sortrows() and then reverse the matrix rank(end:-1:1,:).
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Shifting and Sorting Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!