How can I remove zeroes column from matrix without removing NaN column?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Riyadh Muttaleb
il 4 Gen 2019
Commentato: Riyadh Muttaleb
il 4 Gen 2019
Hi All,
I have matrix contains zeroes columns and NaN columns and numbers columns, I want to remove [JUST zeroes columns] without removing NaN columns,
Thanks in advance,
Riyadh
0 Commenti
Risposta accettata
madhan ravi
il 4 Gen 2019
Modificato: madhan ravi
il 4 Gen 2019
matrix(:,~any(matrix==0,1))
% or
matrix(:,any(matrix==0,1))=[]
7 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!