guiの変数受け渡しについて
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!