Created
November 9, 2021 19:55
-
-
Save jairajsahgal/168e2ebf3a9d2ff91abc033dbd803687 to your computer and use it in GitHub Desktop.
Animation of sin wave in python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import matplotlib.pyplot as plt | |
import matplotlib.animation as animation | |
# References | |
# https://towardsdatascience.com/animations-with-matplotlib-d96375c5442c | |
# https://riptutorial.com/matplotlib/example/23558/basic-animation-with-funcanimation | |
def func(t, line): | |
t = np.arange(0, t, 0.1) | |
y = np.sin(t) | |
line.set_data(t, y) | |
return line | |
fig = plt.figure() | |
ax = plt.axes(xlim=(0, 100), ylim=(-1.2, 1.22)) | |
redDots = plt.plot([], [], 'ro') | |
line = plt.plot([], [], lw=2) | |
# Creating the Animation object | |
line_ani = animation.FuncAnimation(fig, func, frames=np.arange(1, 100, 0.1), fargs=(line), interval=10, blit=False) | |
# line_ani.save(r'Animation.mp4') | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment