GUI dynamic output

4 visualizaciones (últimos 30 días)
ANUBHAV SINHA
ANUBHAV SINHA el 7 de Nov. de 2011
I want to construct a standalone GUI in which, as the user slides an input slider, a ‘dot’ moves on the screen of the GUI according to some algorithm. May someone suggest about how to realize this.
  1 comentario
Walter Roberson
Walter Roberson el 7 de Nov. de 2011
Closely related question by the same author: http://www.mathworks.com/matlabcentral/answers/20563-gui-dynamic-interface

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 7 de Nov. de 2011
In the callback function for the slider, get() the Value associated with the slider, pass that to a routine that calculates the desired new position, and set() the XData and YData properties of the dot to be the new desired position.
  3 comentarios
ANUBHAV SINHA
ANUBHAV SINHA el 7 de Nov. de 2011
does MATLAB GUI provides shapes (such as dot or arrow) in its library to be used?
Walter Roberson
Walter Roberson el 7 de Nov. de 2011
See your other question for information about arrows.
If you are already using annotation() to draw an arrow, you might as well use annotation() to draw an ellipse as well: an ellipse with equal height and width would be a circle. You would then move and resize the circle by changing the annotation ellipse Position property.
http://www.mathworks.com/help/techdoc/ref/annotationellipseproperties.html
Another way of drawing a circle is to use the rectangle() function: despite its name it will draw circles (or ellipses) too. The Position property would be the one to manipulate for it.
You can also just plot a point and use 'o' as the marker shape and define your MarkerSize to be as large as you want the dot to be. You would move it by changing the line XData and YData properties.
Other ways of drawing a circle are described at http://matlab.wikia.com/wiki/FAQ#How_do_I_create_a_circle.3F
You could move the image of a dot around on the screen if you really wanted.

Iniciar sesión para comentar.

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by