isnan cellfun and dropping rows
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, in my cell array X, I would like to drop all rows where the value of the 4th column is NaN (the new cell array is Y).
I am trying this:
Y = X(~any(cellfun(@isnan,X(:,4),'UniformOutput',false),2),:)
It returns the following error: Undefined function 'any' for input arguments of type 'cell'.
How do I have to change the code?
1 commentaire
Stephen23
le 13 Sep 2016
Not enough information: what is the cell array? What size are the arrays inside the cell array? Are all cell contents numeric?
Réponse acceptée
Stephen23
le 13 Sep 2016
Modifié(e) : Stephen23
le 13 Sep 2016
Making some guesses here, but this might do what you want:
Y = X(cellfun(@(x)any(isnan(x)),X(:,4)),:)
2 commentaires
Stephen23
le 13 Sep 2016
If the content of each cell is a scalar, you could even do this:
Y = X(~cellfun(@isnan,X(:,4)),:)
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Cell Arrays dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!