I want to construct a standalone GUI on which, as the user slides a slider, the length and direction of an arrow changes according to some desired algorithm. Can someone suggest about how I may accomplish this.

1 件のコメント

Walter Roberson
Walter Roberson 2011 年 11 月 7 日
Closely related question by the same author: http://www.mathworks.com/matlabcentral/answers/20564-gui-dynamic-output

サインインしてコメントする。

回答 (1 件)

Walter Roberson
Walter Roberson 2011 年 11 月 7 日

0 投票

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 X and Y properties of the annotation arrow to be the new desired start and end positions.

3 件のコメント

ANUBHAV SINHA
ANUBHAV SINHA 2011 年 11 月 7 日
Thanks for your answer...but how do I get the 'arrow'? do i use the image of the arrow to change its size? how do i define the 'start position' of the arrow if its a mere image?
does MATLAB GUI provides shapes in its library to be used?
Walter Roberson
Walter Roberson 2011 年 11 月 7 日
http://www.mathworks.com/help/techdoc/ref/annotation.html
annotation() allows an arrow to be created with a given start and end point.
You would not use the image of an arrow if you used annotation: it would draw the lines as necessary, and it would move all the lines when you set new X and Y properties for it.
Are you familiar with using get() and set() to manipulate the properties of graphics objects?
Do you specifically wish to use the image of an arrow instead of having MATLAB draw the arrow?
Óscar
Óscar 2014 年 10 月 20 日
How can I use my own arrow, instead of the default? actually I don't want an arrow i'd like something like this:
thanks

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeInteractive Control and Callbacks についてさらに検索

質問済み:

2011 年 11 月 7 日

コメント済み:

2014 年 10 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by