How do I filter out a row in a cell array

4 次查看(过去 30 天)
I have a 83x10 cell array. I want to filter the rows by a certain column value, namely whether a column is empty or not (by empty I mean it has the `[]` value).
How do I do this?

采纳的回答

Akira Agata
Akira Agata 2017-7-16
You can do this with cellfun function, like:
% 83x10 sample cell array
C = num2cell(rand(83,10));
% Set some empty cell
C(2,3) = {''};
C(5,2) = {''};
% Identify empty cells
idx = cellfun(@isempty, C);
% Delete rows with empty cell
C(any(idx,2),:) = [];

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Cell Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by