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!