Callback functions: more than 2 input arguments
5 ビュー (過去 30 日間)
古いコメントを表示
Hi, attempting my first GUI and am wondering if it is possible to add extra input arguments into a callback function.
Typically you just have hObject,eventdata. I want to add 3 variables from my workspace, how do I do that from the command: set(buttonsY,'SelectionChangeFcn',@yvar_Callback)
Thanks in advance, fiona
1 件のコメント
Image Analyst
2013 年 3 月 28 日
There is no master workspace like there is with a simple script. Each function has its own private workspace. You can make variables global with the global keyword and then every function that declares that variable global will be able to see it - no passing via the argument list is needed. They would rather that you use getappdata() and setappdata() though.
回答 (1 件)
Image Analyst
2013 年 3 月 28 日
Yes, but you shouldn't need to. Why don't you follow the methods in the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F
0 件のコメント
参考
カテゴリ
Help Center および 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!