double to string in a cell
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi, is there an easier way to convert from double to string in a cell?
Thank you
Left = {num2str(variable1)
num2str(variable2)
num2str(variable3)
etc...}
set(handles.Left_Listbox,'String',Left)
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 17 de Jun. de 2013
Editada: Azzi Abdelmalek
el 17 de Jun. de 2013
A={1 2 12 25}
B=cellfun(@num2str,A,'un',0)
4 comentarios
Ver también
Categorías
Más información sobre Characters and Strings 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!