convert an empty cell to a string

20 visualizaciones (últimos 30 días)
NAFTALI HERSCOVICI
NAFTALI HERSCOVICI el 12 de En. de 2022
Comentada: NAFTALI HERSCOVICI el 12 de En. de 2022
Hello,
I have this cell A={[NaN]} that I need to convert it into a string
Any ideas?
Thanks

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 12 de En. de 2022
I guess it depends on what you want the empty string value to be. The code is straightforward enough.
A={[NaN]}
A = 1×1 cell array
{[NaN]}
B = string(A)
B = <missing>
You can read more about what MATLAB uses for missing values for the different data types here.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by