how can I convert an array in double format to string?
534 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hugo
el 5 de Sept. de 2021
Respondida: Arkaniva Sarkar
el 5 de Sept. de 2021
Hi,
How can I convert an array, previously imported to MATLAB, in double format to string?
Thank you,
0 comentarios
Respuesta aceptada
Arkaniva Sarkar
el 5 de Sept. de 2021
You can either use string(arr) or num2str(arr), depending on what you desire. string(arr) will create a string array by converting each element in the array to string (for example, [ "1", "2", "3" ]) whereas num2str(arr) will convert the whole array into a string (example, [ '1 2 3' ]).
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!