save variables from GUI to workspace (variables not accesible )

35 次查看(过去 30 天)
hello I created a GUI with GUIDE and values are entered by the GUI Variables are then saved seperately in a text file all perfect. BUT I cannot acces to the variables in the WORKSPACE.
I would like to make my variables visible and so that i can acces to them for further projects.
Can someone HELP please thank u a lot.

回答(1 个)

Jason Moore
Jason Moore 2015-2-7
Which ever variables you would like to be in the workspace simply save them off to the base workspace by doing
myVar = 5
assignin('base','myVar',myVar)
in this case assignin takes three arguments. First, the workspace to save the variable. Second, the name of the variable. Lastly, the value of the variable.
  3 个评论

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by