How do I run a script from a GUI that will run in the 'base' workspace?

33 ビュー (過去 30 日間)
John Petersen
John Petersen 2016 年 2 月 25 日
コメント済み: Arif Kilic 2020 年 6 月 19 日
I have a simulink model that uses a lot of variables from the base workspace. Now I am making a GUI that runs the model, but I want to be able to reinitialize the base workspace by calling the script that does this. But I want to do it from the GUI. How do I run a script as if in the base workspace so that it populates all the variables there? I could use assignin('base', var, reinitvar), but this would be extremely tedious for all the variables. Is there another option?
  3 件のコメント
Stephen23
Stephen23 2016 年 2 月 25 日
編集済み: Stephen23 2016 年 2 月 25 日
Adam has asked the most important question. Making variables magically appear (or evalin-ing) in workspaces is buggy and slow. So why do this? Keep workspaces distinct, and pass variables properly.
Walter Roberson
Walter Roberson 2016 年 2 月 25 日
It is because Simulink "From Workspace" blocks get their values from the Base workspace if the model is invoked by double-clicking on it or by using the menus. However, if the model is invoked by a MATLAB function running the sim() command, then From Workspace gets its variables from the workspace of the function that has the sim() call. I gather, however, that it is not uncommon for From Workspace blocks to somehow be configured to look only in the Base workspace.
Simulink bypasses normal workspace encapsulation sometimes :(

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

採用された回答

Walter Roberson
Walter Roberson 2016 年 2 月 25 日
evalin('base', 'name_of_script')
  4 件のコメント
Sanjeev Kumar
Sanjeev Kumar 2019 年 2 月 26 日
Thanks!!
But its not working while using the same command in Callback function of a button in Matlab GUIDE.
Ex:
function Button_callback(hObject,eventdata,handles)
evalin('base','MyScript.m');
end
An error is coming like:Undefined variable 'MyScript.m' or class 'MyScript.m'
Arif Kilic
Arif Kilic 2020 年 6 月 19 日
don't use .m. just write your script name

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

その他の回答 (1 件)

pjman yucifee
pjman yucifee 2018 年 4 月 10 日
Very nice.....Thanks a lot

カテゴリ

Help Center および File ExchangeSimulink Functions についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by