How to delete spaces and '[ ', ']' characters from all data array string cells?
Ältere Kommentare anzeigen
I need to remove the spaces and '[', ']' characters from the cells of a data array, I have try with the cellfun function and with:
a(a(1,1)== '[')='' %%where 'a' is the matrix, this case only for the first cell and '[' character
But is not working, How could be done?
Thank you in advance,
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 15 Jul. 2013
a={'',1 ,[],'22'}
a(cellfun('isempty',a))=[]
Kategorien
Mehr zu Structures finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!