double to string in a cell
18 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 6 月 17 日
編集済み: Azzi Abdelmalek
2013 年 6 月 17 日
A={1 2 12 25}
B=cellfun(@num2str,A,'un',0)
4 件のコメント
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!