Delete empty cells in 3 dimensional cell array

3 ビュー (過去 30 日間)
Peter Bu
Peter Bu 2018 年 9 月 23 日
編集済み: dpb 2018 年 9 月 23 日
Hello everyone,
I want to delete the empty cells in the cell array of the picture. How do I do it? Thanks in advance!
#Peter

回答 (1 件)

dpb
dpb 2018 年 9 月 23 日
That's a 2D cell array w/ three columns, not a 3D array.
c=c(~cellfun(@isempty,c));
  2 件のコメント
Peter Bu
Peter Bu 2018 年 9 月 23 日
Thanks. But I want to keep the elements in the right column. When I run your code it is all in one column. How do it do it?
dpb
dpb 2018 年 9 月 23 日
編集済み: dpb 2018 年 9 月 23 日
No can do.
Even a cell array itself must be rectangular; it can contain variable-length (including 0) elements in a cell but it, itself as the container is not "jagged".
Nor is there a sparse cell array.
Bestest I see you could do would be to save the one column and a corollary variable of column number.
Or, if it's just the display formatting of the empty brackets, could make that a little less obvious by setting all the empty cells to the empty string instead of empty.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by