omitting data from a cell array
2 ビュー (過去 30 日間)
古いコメントを表示
shobhit mehrotra
2015 年 4 月 14 日
コメント済み: shobhit mehrotra
2015 年 4 月 14 日
I have a cell array
A = cell 1: 1,2,5,6 (4x1)
cell 2: 3, 5.5, 6.4, 3, 7.2 (5x1)
cell 3: 2, 13 (2x1)
cell 4: 15 (1x1)
cell 5: 2, 3.25, 6.35 (3x1)
I want to get rid of any cell that has under 3 elements, so the new cell array should have only cells 1,2,5
Thanks
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 4 月 14 日
n={ [1 2 5 6] ,[3 5.5 6.4 3 7.2] ,[2 13] ,15, [2 3.25 6.35] }
out=n(cellfun(@numel,n)>=3)
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!