public variable in gui

4 visualizaciones (últimos 30 días)
mohamed  al-asklany
mohamed al-asklany el 17 de Abr. de 2012
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

Respuestas (2)

Image Analyst
Image Analyst el 17 de Abr. de 2012
  5 comentarios
Walter Roberson
Walter Roberson el 18 de Abr. de 2012
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 el 18 de Abr. de 2012
What's so hard about adding your variable on to handles as a new member?

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 18 de Abr. de 2012
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 comentarios
Sean de Wolski
Sean de Wolski el 18 de Abr. de 2012
global could be changed from somewhere completely different having nothing to do with the figure.
Walter Roberson
Walter Roberson el 18 de Abr. de 2012
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.

Iniciar sesión para comentar.

Categorías

Más información sobre Function Creation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by