I need to manipulate this cellArray

5 vues (au cours des 30 derniers jours)
sermet
sermet le 12 Mai 2014
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'}];

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 12 Mai 2014
out = data(all(cellfun('isempty',regexp(data,'^0$')),2),:);

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by