convert arraycell in array string
조회 수: 2 (최근 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에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
