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

Contour ฟักไข่ในพล็อต Matplotlib


ในการพล็อตรูปร่างด้วยการฟัก เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้าง x , และ z จุดข้อมูลโดยใช้ตัวเลข
  • แบน x และ จุดข้อมูล
  • สร้างร่างและชุดแผนย่อย
  • วาดเส้นชั้นความสูงโดยมีช่องต่างๆ
  • สร้างแถบสีสำหรับอินสแตนซ์ที่แมปแบบสเกลาร์ได้
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import matplotlib.pyplot as plt
import numpy as np

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

x = np.linspace(-3, 5, 150).reshape(1, -1)
y = np.linspace(-3, 5, 120).reshape(-1, 1)
z = np.cos(x) + np.sin(y)

x, y = x.flatten(), y.flatten()

fig1, ax1 = plt.subplots()

cs = ax1.contourf(x, y, z, hatches=['-', '/', '\\', '//'],
                  cmap='gray', extend='both', alpha=0.5)
fig1.colorbar(cs)

plt.show()

ผลลัพธ์

Contour ฟักไข่ในพล็อต Matplotlib