delelte certain string data from cell
显示 更早的评论

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
采纳的回答
更多回答(1 个)
use
names(ismember(names(:,1),'Australia'),:)=[];
类别
在 帮助中心 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!