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

14 vues (au cours des 30 derniers jours)
Helene Cheung
Helene Cheung le 16 Mar 2021
Modifié(e) : Helene Cheung le 16 Mar 2021
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 commentaire
Rik
Rik le 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.

Connectez-vous pour commenter.

Réponse acceptée

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

Plus de réponses (0)

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by