Undefined function 'cell2str' for input arguments of type 'cell'.
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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?
0 Commenti
Risposta accettata
Più risposte (2)
Pascal Boulos
il 19 Ott 2018
>> join(str)
ans =
string
"this is a test of cell 2 str"
>> strjoin(str)
ans =
'this is a test of cell 2 str'
1 Commento
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!