How to remove repeating characters in a character array?

14 ビュー (過去 30 日間)
Rui Xu
Rui Xu 2021 年 11 月 29 日
コメント済み: Stephen23 2021 年 11 月 29 日
For example, I have a 4 x 2 char array, moviecountry. It looks like this, ['US'; 'FR'; 'US'; 'CA']. I would like to have another character array, states, that only stores the non-repeating elements of this array, so in this case, states = ['US'; 'FR'; 'CA']. I have the following code right now:
states = [];
for jj = 1:size(moviecountry,1)
currentcountry = moviecountry(jj,:); %set temp country and compare with other
if jj == 1
states = [currentcountry];
end
for kk = 1:size(states,1)
if ~ismember(currentcountry, states(kk, :))
states = [states;currentcountry]%only add to output if no repetition
end
end
end

採用された回答

Adam Danz
Adam Danz 2021 年 11 月 29 日
See unique.
  5 件のコメント
Adam Danz
Adam Danz 2021 年 11 月 29 日
Note Stephen's use of column vectors. If M is a row vector you won't be able to use this method.
Stephen23
Stephen23 2021 年 11 月 29 日
@Adam Danz: I just copied the char array verbatim from the question: "I have a 4 x 2 char array, moviecountry. It looks like this, ['US'; 'FR'; 'US'; 'CA']."

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

タグ

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by