Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะทำให้ pcolormesh เคลื่อนไหวใน Matplotlib ได้อย่างไร?


เพื่อเคลื่อนไหว pcolormesh ใน matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • สร้างร่างและชุดแผนย่อย

  • สร้างจุดข้อมูล x, y และ t โดยใช้ จำนวน .

  • สร้าง X3 , Y3 และ T3 ส่งคืนเมทริกซ์พิกัดจากเวกเตอร์พิกัดโดยใช้ meshgrid

  • สร้างพล็อตสีเทียมด้วยตารางสี่เหลี่ยมที่ไม่ธรรมดาโดยใช้ pcolormesh() วิธีการ

  • สร้างแถบสีด้วย colormesh แกน

  • เคลื่อนไหว pcolormesh ใช้ Animation() วิธีการเรียน

  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
from matplotlib import pyplot as plt, animation
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

fig, ax = plt.subplots()
x = np.linspace(-3, 3, 91)
t = np.linspace(0, 25, 30)
y = np.linspace(-3, 3, 91)
X3, Y3, T3 = np.meshgrid(x, y, t)
sinT3 = np.sin(2 * np.pi * T3 / T3.max(axis=2)[..., np.newaxis])
G = (X3 ** 2 + Y3 ** 2) * sinT3
cax = ax.pcolormesh(x, y, G[:-1, :-1, 0], vmin=-1, vmax=1, cmap='Blues')
fig.colorbar(cax)

def animate(i):
   cax.set_array(G[:-1, :-1, i].flatten())

anim = animation.FuncAnimation(fig, animate, interval=100, frames=len(t) - 1)
anim.save('517.gif')
plt.show()

ผลลัพธ์

จะทำให้ pcolormesh เคลื่อนไหวใน Matplotlib ได้อย่างไร?