[gui] how to load data?
1 回表示 (過去 30 日間)
古いコメントを表示
i want load data from workspace
i think that
set(handles.e_hole_1_min,'string','gui_H_size')
but do not working...
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/166355/image.jpeg)
0 件のコメント
採用された回答
Image Analyst
2016 年 6 月 11 日
Try using num2str to convert the number to a string:
set(handles.e_hole_1_min, 'String', num2str(gui_H_size));
or with recent versions:
handles.e_hole_1_min.String = num2str(gui_H_size);
2 件のコメント
Image Analyst
2016 年 6 月 11 日
You'll have to give more information and context that that. I don't know what you're asking.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!