Delete rows or column with NaN for a cell array

I really thanks in advance any help. How can I delete NaN's of column from the cell attached as example file here.
Thanks

 채택된 답변

Bhaskar R
Bhaskar R 2020년 2월 17일
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

Dear Bhaskar,
Thanks, but now by removing NaN I have to also remove the longitude corresponding to the NaN. Could you please tell me how can I do it. please find lon as attached you can compare with P_QC
Dear Bhaskar,
I thinks the following cod is working,
for ii=1:length(P_QC)
lon{ii}(nan_loc{ii}) = [];
end
Yeah, same applicable for lon
Thanks

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Pruthvi G
Pruthvi G 2020년 3월 12일
Data(cellfun(@(cell) any(isnan(cell(:))),Data))={''};

카테고리

도움말 센터File Exchange에서 NaNs에 대해 자세히 알아보기

태그

질문:

2020년 2월 17일

답변:

2020년 3월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by