Clear Filters
Clear Filters

if i have this cell matrix how can delete zero cell?

2 views (last 30 days)
if i have
z= [10x10 double]
[10x10 double]
[10x10 double]
[10x10 double]
[10x10 double]
[10x10 double]
[10x10 double]
[10x10 double]
[10x10 double]
[]
[10x10 double]
how can i delete the [] cell from z ?

Accepted Answer

James Tursa
James Tursa on 10 May 2016
z(cellfun(@isempty,z)) = [];

More Answers (0)

Categories

Find more on Data Types 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!