how to load a .mat file in GUI( without guide)?

1 view (last 30 days)
I'm writing a GUI without guide or app designer recently.
The question I have is that I don't know how to pass data between different callback functions.
My requirement is load a .mat file in the callback function of one button, and data in this .mat file can be used in other functions.
function btnRtSet_ButtonPushed(hObject,eventdata,handles)
load('Net.mat');
InitNet;
end%btnRtSet_Callback
This function is the callback of a button, and InitNet is a .m file.
Data in Net.mat are as follows,
Link struct
Conn struct
And functions in InitNet are very basic and simple.
Here are warnings after running,
Error using load
Attempt to add "Conn" to a static workspace.
  1 Comment
Rik
Rik on 16 Mar 2021
This is a public forum. If you want people to be able to contact you, you can enable this in your community profile. By asking for responses via email you are effectively asking people to help you, without any possibility of others benefitting from the help as well.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 16 Mar 2021
function btnRtSet_ButtonPushed(hObject,eventdata,handles)
datastruct = load('Net.mat');
Link = datastruct.Link;
Conn = datastruct.Conn;
InitNet;
end %btnRtSet_Callback

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!