[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!