out = data(all(cellfun('isempty',regexp(data,'^0$')),2),:);
I need to manipulate this cellArray
2 次查看(过去 30 天)
显示 更早的评论
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'}];
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multidimensional Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!