remove the repeating values in array
이전 댓글 표시
i have an array with 2 rows 9 columns values
29 29 29 29 25 25 29 29 27
13 13 13 13 14 14 13 13 19
i wanted to remove the repeating values and get the output as
29 25 27
13 14 19
what code should i write to remove the repeated values?? please do reply....
채택된 답변
추가 답변 (1개)
Azzi Abdelmalek
2013년 11월 28일
a=[29 29 29 29 25 25 29 29 27;
13 13 13 13 14 14 13 13 19];
b=a'
[ii,jj]=unique(a','rows')
out=b(sort(jj),:)'
댓글 수: 3
Elysi Cochin
2013년 11월 28일
Elysi Cochin
2013년 11월 28일
Azzi Abdelmalek
2013년 11월 28일
It's in that order
카테고리
도움말 센터 및 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!