I need to manipulate this cellArray

1 回表示 (過去 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 Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by