Undefined function 'cell2str' for input arguments of type 'cell'.

조회 수: 16 (최근 30일)
sermet
sermet 2013년 11월 18일
댓글: Walter Roberson 2018년 12월 25일
str = {'this' 'is' 'a' 'test' 'of' 'cell' '2' 'str'};
str=cell2str(str)
Undefined function 'cell2str' for input arguments of type 'cell'
%I got this error.
%How can I transform any character of cell to strings?

채택된 답변

Doug Hull
Doug Hull 2013년 11월 18일
There is no command cell2str in core MATLAB.

추가 답변 (2개)

Matt J
Matt J 2013년 11월 18일
편집: Matt J 2013년 11월 18일
Perhaps you are thinking of
>> cell2mat(str)
ans =
thisisatestofcell2str
or maybe
>> char(str)
ans =
this
is
a
test
of
cell
2
str

Pascal Boulos
Pascal Boulos 2018년 10월 19일
>> join(str)
ans =
string
"this is a test of cell 2 str"
>> strjoin(str)
ans =
'this is a test of cell 2 str'

카테고리

Help CenterFile Exchange에서 Cell Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by