How to pass a struct between callbacks in GUI?

9 ビュー (過去 30 日間)
Valentino
Valentino 2015 年 2 月 19 日
コメント済み: Geoff Hayes 2015 年 2 月 24 日
Hello, i want to load a file(.mat) which has a struct in it in my GUI. There is one button for picking the file and loading it and one button which should use the values(matrices) stored in the struct for calculations. So i Need to pass the loaded struct from one caallback to another... I'm using guide. Thanks

採用された回答

Geoff Hayes
Geoff Hayes 2015 年 2 月 22 日
Valentino - just save the structure to handles in one callback so that the other callback has access to it. For example, if the following is the callback to choose and load the contents of a file
function pushbutton1_Callback(hObject, eventdata, handles)
% choose the file
% load the data into a structure myData
% add the structure to handles
handles.myData = myData;
% save the updated structure
guidata(hObject,handles);
Now in your other callback, you can access this structure directly as
function pushbutton2_Callback(hObject, eventdata, handles)
if isfield(handles,'myData')
% do something with myData
end
Try implementing the above and see what happens!
  1 件のコメント
Geoff Hayes
Geoff Hayes 2015 年 2 月 24 日
Valentino's answer moved here
Thank you very much Geoff!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by