Delete rows or column with NaN for a cell array

10 views (last 30 days)
I really thanks in advance any help. How can I delete NaN's of column from the cell attached as example file here.
Thanks

Accepted Answer

Bhaskar R
Bhaskar R on 17 Feb 2020
nan_loc = cellfun(@(x)any(isnan(x)), P_QC, 'UniformOutput', false);
for ii=1:length(P_QC)
P_QC{ii}(:,nan_loc{ii}) = [];
end
  4 Comments

Sign in to comment.

More Answers (1)

Pruthvi G
Pruthvi G on 12 Mar 2020
Data(cellfun(@(cell) any(isnan(cell(:))),Data))={''};

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!