how to empty cell from excel and [] those bracket also

Answers (1)

If C is your cell array..to remove empty cells:
C = C(~cellfun('isempty',C)) ;

Asked:

on 20 Oct 2020

Answered:

on 20 Oct 2020

Community Treasure Hunt

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

Start Hunting!