ho to get rid of repeated cells in cells arrays functions
1 回表示 (過去 30 日間)
古いコメントを表示
Hello..
I have a cells array as follows:
contextt =
{24x1 cell} {25x1 cell} {26x1 cell}
I need to find the repeated cells in each column of the cells..
I used the following code , but doesn't help
[~,idx]=unique(cell2mat(contextt),'rows');
context_arr=contextt(idx,:)
with the following error:
Cannot support cell arrays containing cell arrays or objects
I changed the command 'rows' to 'columns' in the secod fucntion , but also doesn't work... also I want to results to be shown for the cells array contextt any advice Regards
0 件のコメント
採用された回答
Azzi Abdelmalek
2012 年 11 月 22 日
編集済み: Azzi Abdelmalek
2012 年 11 月 22 日
contextt={{1 2 3 4},{1 1 2 5},{2 2 2 6 7}}
out=cellfun(@(x) unique(cell2mat(x)),contextt,'un',0)
7 件のコメント
Jan
2012 年 11 月 22 日
@Jwana: Accepting an answer means that it solves your problem. Is the problem solved already?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!