Conversion to string from struct is not possible.

조회 수: 96 (최근 30일)
Wei Kang Cheng
Wei Kang Cheng 2022년 5월 11일
답변: Mitch Lautigar 2022년 5월 11일
How to convert to double in order to address each data in this case?
  댓글 수: 3
Wei Kang Cheng
Wei Kang Cheng 2022년 5월 11일
how to solve this?
Benjamin Thompson
Benjamin Thompson 2022년 5월 11일
X.data is already a matrix of doubles. Maybe you can post a smaller problem and show the output or result you are looking for? Post code or a sample MAT file with the data.

댓글을 달려면 로그인하십시오.

답변 (1개)

Mitch Lautigar
Mitch Lautigar 2022년 5월 11일
Couple ways to handle this. I'll explain the top 2.
1 - Pull the data out of the struct.
num_data = x.data;
str_data = x.textdata;
You can now change the type if you wish.
2 - Convert to a cell array/table
This will put everything into a single array/table. Though you might have to format it a little bit.
Hope it helps! If it doesn't, reply and i'll answer when I can.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by