필터 지우기
필터 지우기

GUI dynamic output

조회 수: 1 (최근 30일)
ANUBHAV SINHA
ANUBHAV SINHA 2011년 11월 7일
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
Walter Roberson
Walter Roberson 2011년 11월 7일
Closely related question by the same author: http://www.mathworks.com/matlabcentral/answers/20563-gui-dynamic-interface

댓글을 달려면 로그인하십시오.

답변 (1개)

Walter Roberson
Walter Roberson 2011년 11월 7일
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
ANUBHAV SINHA
ANUBHAV SINHA 2011년 11월 7일
does MATLAB GUI provides shapes (such as dot or arrow) in its library to be used?
Walter Roberson
Walter Roberson 2011년 11월 7일
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.

댓글을 달려면 로그인하십시오.

카테고리

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