フィルターのクリア

convert Char to string type

412 ビュー (過去 30 日間)
garima sharma
garima sharma 2022 年 8 月 1 日
コメント済み: Walter Roberson 2022 年 8 月 1 日
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?

採用された回答

Walter Roberson
Walter Roberson 2022 年 8 月 1 日
  2 件のコメント
garima sharma
garima sharma 2022 年 8 月 1 日
data_1 = string(data);
this keyword is showing error. "Undefined function 'string' for input arguments of type 'char'."
Walter Roberson
Walter Roberson 2022 年 8 月 1 日
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()

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by