public variable in gui

1 次查看(过去 30 天)
mohamed  al-asklany
mohamed al-asklany 2012-4-17
hello,
how can i define variable all the function of gui see it?
[Merged information from duplicate question]
if i have tow func in gui and i have variable x i need x identified from function 1 and function 2
func 1
x=1+y;
func2
z=x+1

回答(2 个)

Image Analyst
Image Analyst 2012-4-17
  5 个评论
Walter Roberson
Walter Roberson 2012-4-18
The FAQ gives examples for some of the solutions, and you can search the MATLAB documentation for information on the functions mentioned.
You can also ask specific questions about interpretation of the documentation.
Image Analyst
Image Analyst 2012-4-18
What's so hard about adding your variable on to handles as a new member?

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2012-4-18
func 1
global x
x=1+y;
func 2
global x
z=x+1
This is not a recommended solution. The solutions in the FAQ that IA pointed you to are better ones.
  5 个评论
Sean de Wolski
Sean de Wolski 2012-4-18
global could be changed from somewhere completely different having nothing to do with the figure.
Walter Roberson
Walter Roberson 2012-4-18
The theory goes that barriers to using a variable as if it is global will introduce reluctance to indeed use it as if it is global.
Using handles introduces notable barriers, such as needing to guidata() in the assigning routine to allow the change to be seen, and needing to guidata() in any calling routine that needs to know the updated value. And for cross-gui work, needing to know the figure number of the other gui in order to be able to access its information. It is common for people to run into difficulties when they do _not_ know these mechanisms, so in one sense the barriers are being effective.
On the other hand, I have the distinct impression that what newcomers tend to learn about handles is that there is a particular _pattern_ to use, and they just go ahead and use that pattern without understanding it. Sort of like people just going ahead and entering their password any time MS Windows or OS-X ask for it. Barriers that become treated by rote become ineffective barriers.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by