How do I repair the eror?

조회 수: 2 (최근 30일)
Ali Nik
Ali Nik 2023년 4월 22일
댓글: Ali Nik 2023년 4월 22일
#How do I repair the error?
z=Y(1,j)
zz=cellstr(z)

답변 (1개)

Rik
Rik 2023년 4월 22일
You need to make sure each element of the cell array is a char vector. Since currently the second one is a cell, you need to unpack it. The code below should result in a cellstr.
z=Y(1,j)
zz=[z(1) z{2}];
  댓글 수: 1
Ali Nik
Ali Nik 2023년 4월 22일
This is an example of my data, the data changes in each stage and it is possible that each stage has different data and it is not always the second data of the cell, and sometimes it is the first cell and sometimes it is both cells.

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

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by