how to empty cell from excel and [] those bracket also
Show older comments
Answers (1)
KSSV
on 20 Oct 2020
If C is your cell array..to remove empty cells:
C = C(~cellfun('isempty',C)) ;
Categories
Find more on Spreadsheets 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!