[gui] how to load data?
2 次查看(过去 30 天)
显示 更早的评论
i want load data from workspace
i think that
set(handles.e_hole_1_min,'string','gui_H_size')
but do not working...
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!