필터 지우기
필터 지우기

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 CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by