Option 'stable' of the command unique?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a matrix A ax1 and a vector B which is obtained as
B=sum( bsxfun(@eq, A, unique(A,'stable')') )'
E.g.
A=[5; 5; 3; 4; 4; 4];
B=[2;1;3];
The problem is that the option 'stable' is not recognized in my current version of Matlab. Do you have any idea about how I can replace this command?
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2014년 5월 1일
편집: Azzi Abdelmalek
2014년 5월 1일
[a,idx]=unique(A)
[ii,ii]=sort(idx);
B=sum( bsxfun(@eq,A,a(ii)'))'
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!