How to link gui push button with the matlab code m files.
显示 更早的评论
how to link gui push button with the matlab codes in m files.
回答(1 个)
Adam
2014-11-12
0 个投票
Just call your m-file in the push button callback.
If that isn't enough information try giving more information in your question!
2 个评论
zionna
2014-11-12
Adam
2014-11-12
In a callback you can store data on the handles structure so, for example your filename coming back from a browse instruction (e.g. a uigetfile) in your browse button callback:
handles.filename = uigetfile;
guidata( hObject, handes );
Then in your other callback you can access that file by simply
handles.filename
e.g.
fread( handles.filename,... )
or whatever instruction you want. Then call your m-file to do whatever you want. If you want to store anything else in your GUI use handles as in the example above.
类别
在 帮助中心 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!