how to make an array without empty cell

1 view (last 30 days)
Hello,
I have an array of this and there are some empty cells. I am trying to eliminate those with this command but it is working. I want my cell array with zero empty cells. Can someone help me?
t(all(emptyCells,:) = []
t(emptyCells) = [];

Accepted Answer

Walter Roberson
Walter Roberson on 7 Nov 2022
t(~cellfun(@isempty, t))

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!