Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib에서 사인 곡선을 애니메이션하는 방법은 무엇입니까?

<시간/>

애니메이션된 사인 곡선을 만들기 위해 다음 단계를 수행할 수 있습니다. -

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 새 그림을 만들거나 기존 그림을 활성화합니다.
  • 현재 Figure에 좌표축을 추가하고 현재 좌표축으로 만듭니다.
  • 빈 목록으로 선을 그립니다.
  • 줄을 초기화하려면 빈 목록을 전달하세요.
  • 사인 곡선에 애니메이션을 적용하려면 사인 곡선 값을 업데이트하고 선 인스턴스를 반환합니다.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
from matplotlib import pyplot as plt
from matplotlib import animation

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

fig = plt.figure()
ax = plt.axes(xlim=(0, 2), ylim=(-2, 2))
line, = ax.plot([], [], lw=2)

def init():
   line.set_data([], [])
   return line,

def animate(i):
   x = np.linspace(0, 2, 1000)
   y = np.sin(2 * np.pi * (x - 0.01 * i))
   line.set_data(x, y)
   return line,

anim = animation.FuncAnimation(fig, animate, init_func=init, frames=200, interval=20, blit=True)
plt.show()

출력

Matplotlib에서 사인 곡선을 애니메이션하는 방법은 무엇입니까?