double to string in a cell
18 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Azzi Abdelmalek
il 17 Giu 2013
Modificato: Azzi Abdelmalek
il 17 Giu 2013
A={1 2 12 25}
B=cellfun(@num2str,A,'un',0)
4 Commenti
Vedere anche
Categorie
Scopri di più su Characters and Strings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!