Filter löschen
Filter löschen

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

17 Ansichten (letzte 30 Tage)
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?

Akzeptierte Antwort

Doug Hull
Doug Hull am 18 Nov. 2013
There is no command cell2str in core MATLAB.

Weitere Antworten (2)

Matt J
Matt J am 18 Nov. 2013
Bearbeitet: Matt J am 18 Nov. 2013
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 am 19 Okt. 2018
>> join(str)
ans =
string
"this is a test of cell 2 str"
>> strjoin(str)
ans =
'this is a test of cell 2 str'

Kategorien

Mehr zu Cell Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by