Eliminate certain entries of cell array
1 回表示 (過去 30 日間)
古いコメントを表示
I have a 1x73 cell array, FR, and I would like to eliminate FR {8, 17, 31, 41, 43, 47, 49, 56, 60, 66, 73} and re-save as a 1x62 cell array. How can I do this?
2 件のコメント
採用された回答
KSSV
2020 年 5 月 27 日
If C is your cell array and FR has the indices of cells which are to be removed, use:
C(FR) = []
0 件のコメント
その他の回答 (1 件)
Fangjun Jiang
2020 年 5 月 27 日
Would it possible to make it array?
a=1:5;
b=1:3;
a=setdiff(a,b)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!