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!