How to convert cell with numeric and string-nan into TYPE double
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear all, I have a cell with the combination of number and string NaN. May I know how I can convert the content into a double type? The cell is attach together with this thread.
Thanks in advance
0 commentaires
Réponse acceptée
Matthew
le 3 Oct 2017
Something like the below works fairly well. Use cellfun to search for numeric values, and save them into the doubles array. Then convert everything else into NaNs (or whatever else you want the NaNs to be).
cr_double = zeros(size(cr_manual))
cr_number = cellfun(@(x) isnumeric(x),cr_manual)
cr_double(cr_number) = [cr_manual{cr_number}]
cr_double(~cr_number) = NaN
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!