Question about sets and cell array
1 回表示 (過去 30 日間)
古いコメントを表示
I have a cell array :
B{1} = [0,1,2]
I want to now remove the zero. How do I do it?
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 9 月 6 日
編集済み: Azzi Abdelmalek
2013 年 9 月 6 日
B{1}(1)=[]
If you want to remove all zeros in B{1}
B{1}(B{1}==0)=[]
0 件のコメント
その他の回答 (1 件)
Image Analyst
2013 年 9 月 6 日
B{1} = [1,2];
If you want something more general, then say in what ways does it need to be general. Like, does it need to remove all zeros in B{1} only? Or does it need to remove all zeros in B{2}, B{3} and so on? The limited, very specific question you posted can be solved with my code.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!