delelte certain string data from cell
Ältere Kommentare anzeigen

i want to delete Australia from this data using code
name= names (~any(cellfun('Australia',names),1:)
but i gives error so tell me an other way to del it
Akzeptierte Antwort
Weitere Antworten (1)
use
names(ismember(names(:,1),'Australia'),:)=[];
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!