セル配列のゼロ要素削除
70 views (last 30 days)
Show older comments
こんにちは。
要素がTable型のセル配列で、要素の中で空のものだけを削除したいです。例えば以下で生成されるCAのようなセル配列に対して
%データの例
%要素がtable型 1つの要素は空のTable
Var1=(1:10)';
Var2=rand(10,1);
T1=table(Var1,Var2)
T2=table([],[])
CA={T1,T2,T1}'
ここでT2のような空のTableの要素だけを削除する方法はありますでしょうか。
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on ビッグ データの処理 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!