how can i do this animation in matlab

2 views (last 30 days)
hi..
during reading and see some video on youtube i note this video
i just need to know how to do this animation use matlab code just the animation>!!!
if any simple code i will be grateful
thank in advance
best regards

Accepted Answer

Walter Roberson
Walter Roberson on 15 Jan 2013
Plot the circle.
Now use line() to draw the armature, using a higher LineWidth and a Marker of 's' (square) and a MarkerFaceColor of 'r' (red), possibly using a MarkerEdgeColor of 'k' (black). Store the handle of this line().
Then, at each step of the animation, set() the line XData and YData properties to reflect the new line position. Then call drawnow() to make the updated line show up.

More Answers (0)

Categories

Find more on Animation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!