convert double NaN to string NaN
Mostrar comentarios más antiguos
Hi
I have a cell array with NaN as shown in the image. How can I convert NaN to string NaN meaning instead of of seeing NaN in the array, I want to see "NaN".
I have tried this: TC(cellfun(@(x) any(isnan(x)),TC,'UniformOutput',false)) = {"NaN"}; but no success.
Any help is appreciated.

Respuesta aceptada
Más respuestas (1)
Try num2str
a = {nan 1 nan};
cellfun(@num2str,a,'UniformOutput',0)
1 comentario
Daneisha Blair
el 24 de Ag. de 2021
Categorías
Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!