フィルターのクリア

how to acceess variable from another function in GUI ?

1 回表示 (過去 30 日間)
alex
alex 2012 年 3 月 9 日
I have a question say i building a gui that's loads file if data(array of double ) and calculates and plots a result so in gui,there is 'load file' push button,which has a callback function 'calculate and plot' push button,which also has a function callback
how can i access a data in 'calculate and plot' function callback ? when i doing debug there is no such variable ! F1 !

採用された回答

Walter Roberson
Walter Roberson 2012 年 3 月 9 日
  3 件のコメント
Walter Roberson
Walter Roberson 2012 年 3 月 9 日
Use a shared variable, or store the data in your handles structure via guidata(), or use setappdata(), or store the data in the UserData field of some object, or use a persistent variable, or use a global variable.
You can take any of these approaches.
In the place you need to use the data, retrieve it from where-ever you stored it.
alex
alex 2012 年 3 月 10 日
Thank you !
now it works !

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by