How to create a cell array from rows of an existing cell array?
2 ビュー (過去 30 日間)
古いコメントを表示
I have a cell array named "list" of 900 rows and 9 columns, each element of the cell array contains a string. i want to extract few rows of "list" to create a new cell array. The rows that i need are stored in a vector named "a".
0 件のコメント
採用された回答
the cyclist
2018 年 1 月 3 日
new_list = list(a,:);
2 件のコメント
Stephen23
2018 年 1 月 3 日
編集済み: Stephen23
2018 年 1 月 3 日
@Miguel Reina: the difference is simple:
- {} curly braces refer to the cell contents.
- () parentheses refer to the cells themselves.
Because you wanted to get a subset of the cell array, all you need is to use parentheses to refer to the cells themselves. Read more in the MATLAB documentation:
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!