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

2 次查看(过去 30 天)
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 个评论
Rik
Rik 2021-3-16
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.

请先登录,再进行评论。

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Power and Energy Systems 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by