Delete rows with NaN for a cell array
Mostra commenti meno recenti
I want to remove the rows that have NaN and still keep the dimension of the array intact.
[ NaN] [ NaN] [ NaN] [ NaN]
[ NaN] [ NaN] [ NaN] [ NaN]
'Total RADIO Drops' 'Total Drops' 'CC DCR (%)' 'RADIO DCR (%)'
Above is just an example, I have over a thousand rows.
The only problem I have now is removing rows which have NaN and string together
Thank you
1 Commento
Rooy
il 26 Giu 2013
Risposta accettata
Più risposte (1)
Andrei Bobrov
il 26 Giu 2013
Modificato: Andrei Bobrov
il 26 Giu 2013
A - your cell array
out = A(any(cellfun(@(x)any(~isnan(x)),A),2),:);
ADD
out = A(all(cellfun(@(x)any(~isnan(x)),A),2),:);
4 Commenti
Rooy
il 26 Giu 2013
Andrei Bobrov
il 26 Giu 2013
see ADD part in my answer
Rooy
il 26 Giu 2013
YING CONG XIAO
il 21 Apr 2021
hi Andrei,
how to specify the range in this fun:
out = A(any(cellfun(@(x)any(~isnan(x)),A),2),:);
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!