convert arraycell in array string
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
aldo
el 11 de Jul. de 2023
>> class(risulRankingResult)
ans =
'cell'
it's possibile to convert in string?
1 comentario
Respuesta aceptada
Stephen23
el 11 de Jul. de 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 comentarios
Stephen23
el 12 de Jul. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!