convert Char to string type
478 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
garima sharma
il 1 Ago 2022
Commentato: Walter Roberson
il 1 Ago 2022
I am reading data from serial port in the char format. the data format is
data = 1 2.2345
(1*9 char size {including space after 1, and new line character 5})
how to convert char into string?
0 Commenti
Risposta accettata
Walter Roberson
il 1 Ago 2022
string(data)
2 Commenti
Walter Roberson
il 1 Ago 2022
Ah I just noticed that you are using r2016a. string() objects were added in r2016b, so you cannot convert to string() objects in your release.
In your release you would use char vectors or cell array of character vectors; see also cellstr()
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Data Type Conversion in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!