convert arraycell in array string
1 回表示 (過去 30 日間)
古いコメントを表示
>> class(risulRankingResult)
ans =
'cell'
it's possibile to convert in string?
採用された回答
Stephen23
2023 年 7 月 11 日
"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 件のコメント
Stephen23
2023 年 7 月 12 日
"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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!