guiの変数受け渡しについて
조회 수: 1 (최근 30일)
이전 댓글 표시
2つのguiがあります。
test1.fig
test2.fig
test1.figのプッシュボタンを押すと以下の変数が生成されます。
TEST='TEST1'
この変数をtest2.figのedit1に表示させるのはどうすればいいですか?
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
close(gcf)
TEST = 'TEST1';
%ここでtest2.fugのedit1にTESTを表示させる。
宜しくお願いします。
댓글 수: 0
채택된 답변
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!