Matlab simulink access to gui handle in listener
4 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I have a problem with my gui program which pilot a simulink model.
On my Gui program (made with GUIDE) I have an add_exec_event_listener function that link a simulink block (Scope) with a Gui function.
In the Gui function, I want to collect the input value of the scope block (That works well) and save it in my Gui handle. But I can't have access to the Gui handle. Even if I use
hf = findall(0,'tag',mfilename)
guidata(hf);
In Matlab command line I have this error :
hf =
Empty matrix: 0-by-1
??? Error using ==> guidata at 89
H must be the handle to a figure or figure descendent.
Error in ==> IM20_Starter>localEventListener at 362
ad = guidata(hf)
Thank for your help and excuse my limited English
1 件のコメント
Eyad
2012 年 9 月 2 日
Hi I'm trying to make a GUI to control a model on a RTW ,I made the GUI with GUIDE and set the strartfcn of the model to "localAddEventListener" , the model and GUI works perfectly on simulation but when I build it on XPC target box and try to press connect it gives me an error saying that it can't find the function .I removed the function "localAddEventListener" from the callback of the model's startfcn and added it through the GUI after building and connecting the model to the XPC ,the simulation worked perfectly , but when i tried to run it on the XPC it didn't show an error but no data was displayed , as you said the event listeners probably weren't invoked on the XPC, what do you think caused that ? and how do I solve it ?
採用された回答
Titus Edelhofer
2012 年 1 月 13 日
Hi,
if the GUI is programmed with GUIDE, you should be able to collect the handles by just calling the gui again. If your gui is called mygui, you should be able to get the handles by
hFigure = mygui();
handles = guidata(hFigure);
Titus
2 件のコメント
Titus Edelhofer
2012 年 1 月 13 日
Your welcome. If you like you might mark the question as "answered" ...
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Model Predictive Control Toolbox についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!