I need to manipulate this cellArray

조회 수: 3 (최근 30일)
sermet
sermet 2014년 5월 12일
답변: Andrei Bobrov 2014년 5월 12일
data=[{'100'},{'p1'},{'1'};{'100'},{'p2'},{'1'};{'110'},{'p3'},{'0'};{'120'},{'1'},{'1'};{'130'},{'p4'},{'0'}];
%I need to eliminate rows which contain '0' then I need to create data matrix again as it seen;
data=[{'100'},{'p1'},{'1'};{'100'},{'p2'},{'1'};{'120'},{'1'},{'1'}];

채택된 답변

Andrei Bobrov
Andrei Bobrov 2014년 5월 12일
out = data(all(cellfun('isempty',regexp(data,'^0$')),2),:);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by