how can I convert an array in double format to string?

761 Ansichten (letzte 30 Tage)
Hugo
Hugo am 5 Sep. 2021
Beantwortet: Arkaniva Sarkar am 5 Sep. 2021
Hi,
How can I convert an array, previously imported to MATLAB, in double format to string?
Thank you,

Akzeptierte Antwort

Arkaniva Sarkar
Arkaniva Sarkar am 5 Sep. 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' ]).

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by