isnan input arguments of type 'cell'
30 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I am getting a cell error
a={'2' [NaN] '4' '5'}
isnan(a)
Undefined function 'isnan' for input arguments of type 'cell'.
How can I get around this error
0 Commenti
Risposta accettata
the cyclist
il 28 Giu 2012
cellfun(@isnan,a)
2 Commenti
Kavya Ashok
il 14 Set 2016
This returns the index of a where nan exists. What if you want Nan to be removed from the original array?
Più risposte (1)
Debejyo Chakraborty
il 20 Lug 2016
Sometimes this may be necessary: b = cellfun(@isnan,a,'UniformOutput',false);
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!