convert arraycell in array string
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
>> class(risulRankingResult)
ans =
'cell'
it's possibile to convert in string?
1 Kommentar
Akzeptierte Antwort
Stephen23
am 11 Jul. 2023
"it's possibile to convert in string?"
Probably. I am guessing that you want something like this:
C = {1;[2,34];[56,7,89]}
F = @(v)join(string(v),',');
S = cellfun(F,C)
6 Kommentare
Stephen23
am 12 Jul. 2023
"i want to use Sis.Rank_DisplayIdxSis (in a structure) now i must to convert it in arraycell..."
I presume by "arraycell" you actually mean a cell array.
It is unclear to me what you want to convert and what the problem is.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Type Conversion 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!