Ask Your Question
0

Dancing x-axis in animation [solved]

asked 12 years ago

Raul gravatar image

updated 12 years ago

vdelecroix gravatar image

I'm very new to sage, and I'm trying to make the following animation:

a = animate([sin(20*(x - float(k)))/x for k in srange(0,2*pi,0.5)], 
           xmin=1, xmax=4, figsize=[3,2])
a.gif(savefile='my_animation.gif', show_path=True)

The problem is that if you look at the animation you'll notice that the x-axis is moving all the time which I find very distracting. Is there a way to tell sage that I want to center the x-axis, so that it stops moving with the animation?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 12 years ago

Raul gravatar image

updated 12 years ago

vdelecroix gravatar image

I just found out how to solve the problem, I just changed the first command to

a = animate([sin(20*(x - float(k)))/x for k in srange(0,2*pi,0.5)], 
           xmin=1, xmax=4, ymin=-1, ymax=1)

Please disregard the question.

Preview: (hide)
link

Comments

Since you were able to answer your own question, you may click the "accept" icon next to your answer. This is how the site indicates the question as "solved", rather than editing the title of the question.

process91 gravatar imageprocess91 ( 11 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 423 times

Last updated: Apr 01 '13