Delete rows or column with NaN for a cell array
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Farshid Daryabor
el 17 de Feb. de 2020
Respondida: Pruthvi G
el 12 de Mzo. de 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 comentarios
Respuesta aceptada
Bhaskar R
el 17 de Feb. de 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 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!