guiの変数受け渡しについて
Afficher commentaires plus anciens
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を表示させる。
宜しくお願いします。
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur 起動と終了 dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!