フィルターのクリア

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 Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by