Delete rows or column with NaN for a cell array
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Farshid Daryabor
am 17 Feb. 2020
Beantwortet: Pruthvi G
am 12 Mär. 2020
I really thanks in advance any help. How can I delete NaN's of column from the cell attached as example file here.
Thanks
0 Kommentare
Akzeptierte Antwort
Bhaskar R
am 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 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!