scratch/animation.sagews

AuthorHarald Schilly
Date2016-12-24T11:04:29
Project14eed217-2d3c-4975-a381-b69edcb40e0e
Locationscratch/animation.sagews
Original fileanimation.sagews
%var xdef mk_plot(k):    return plot(sin(k * x) * x^2, xmin=-2, xmax=2, ymin= -2, ymax = 2)sla=animate([mk_plot(t) for t in range(1, 20)] , figsize=5)show(sla, delay=30)