creating a vocab list
2 ビュー (過去 30 日間)
古いコメントを表示
Mahmoud Zeydabadinezhad
2017 年 10 月 28 日
コメント済み: Mahmoud Zeydabadinezhad
2017 年 10 月 29 日
Hi, I have a cell array (P) of size 5000x1. Each element of this cell array is another cell array of variable size which contains some words. The task is to find the words that are present in more than a certain number of elements (rows) of the array P. Thanks
1 件のコメント
John D'Errico
2017 年 10 月 28 日
What have you tried? If nothing, then why not? If you want help, show what you have done. Otherwise this becomes merely a doit4me.
採用された回答
Walter Roberson
2017 年 10 月 29 日
Hint: You are not told which orientation the individual cell arrays are. You need to make them all the same orientation before you can get much further.
bar = cellfun(@(C) C(:), foo, 'uniform', 0);
Then you can pull all of the contents into a single array:
vertcat(bar{:})
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!