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

จะเพิ่มแผนย่อย 3 มิติให้กับตัวเลข matplotlib ได้อย่างไร?


ในการเพิ่มแผนย่อย 3 มิติให้กับตัวเลข matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้างจุดข้อมูล x, y และ z โดยใช้ numpy
  • สร้างตัวเลขใหม่หรือเปิดใช้งานตัวเลขที่มีอยู่
  • เพิ่ม 'ขวาน' ให้กับร่างซึ่งเป็นส่วนหนึ่งของการจัดโครงเรื่องย่อยด้วย projection='3d' .
  • พล็อตจุดข้อมูล x, y และ z โดยใช้ plot() วิธีการ
  • หากต้องการแสดงรูป ให้ใช้ .show() วิธีการ

ตัวอย่าง

from matplotlib import pyplot as plt
import numpy as np

# Set the figure size
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True

# Create x, y and z data points using numpy
x = np.linspace(-5, 5, 100)
y = np.linspace(-5, 5, 100)
z = x ** 2 + y ** 2

fig = plt.figure()

# add subplot with projection='3d'
ax = fig.add_subplot(111, projection='3d')

# Plot x, y and z data points
ax.plot(x, y, z, color='red', lw=7)

plt.show()

ผลลัพธ์

มันจะสร้างผลลัพธ์ต่อไปนี้ -

จะเพิ่มแผนย่อย 3 มิติให้กับตัวเลข matplotlib ได้อย่างไร?