Borrar filtros
Borrar filtros

How to convert cell with numeric and string-nan into TYPE double

5 visualizaciones (últimos 30 días)
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

Respuesta aceptada

Matthew
Matthew el 3 de Oct. de 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
  1 comentario
balandong
balandong el 5 de Oct. de 2017
Hi Matthew,
Thanks for the quick reply. Your suggestion work like a charm, really appreciate it.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by