Borrar filtros
Borrar filtros

Extract numbers from cell array

2 visualizaciones (últimos 30 días)
Christian F.
Christian F. el 16 de Abr. de 2012
Hi,
I have a cell array with both numbers and 'NA' strings for missing values.
Now I want to convert the cell array to a pure number array to use it for calculations, keeping all numbers and setting the 'NA' to NaN.
What would be the easiest way to achieve that?
Best regards,
Chris

Respuesta aceptada

Walter Roberson
Walter Roberson el 16 de Abr. de 2012
A(cellfun(@ischar,A)) = {NaN};
Amat = cell2mat(A);

Más respuestas (0)

Categorías

Más información sobre Data Types 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