필터 지우기
필터 지우기

remove the repeating values in array

조회 수: 2 (최근 30일)
Elysi Cochin
Elysi Cochin 2013년 11월 28일
댓글: Azzi Abdelmalek 2013년 11월 28일
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....

채택된 답변

Andrei Bobrov
Andrei Bobrov 2013년 11월 28일
편집: Andrei Bobrov 2013년 11월 28일
a = [ 29 29 29 29 25 25 29 29 27;
13 13 13 13 14 14 13 13 19];
[ii,ii] = unique(a','rows','first')
out = a(:,sort(ii));
  댓글 수: 2
Elysi Cochin
Elysi Cochin 2013년 11월 28일
But sir i'm getting error.....
??? Error using ==> unique at 34
Unrecognized option.
Error in ==> demoCub at 12
a1 = unique(a','rows','stable')';
Andrei Bobrov
Andrei Bobrov 2013년 11월 28일
corrected

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

추가 답변 (1개)

Azzi Abdelmalek
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
Elysi Cochin 2013년 11월 28일
thank u all....
Azzi Abdelmalek
Azzi Abdelmalek 2013년 11월 28일
It's in that order

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

카테고리

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

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by