Matplotlib - Plot 3D Wireframe
Plot wireframe mengambil grid nilai dan memproyeksikannya ke permukaan tiga dimensi yang ditentukan, dan dapat membuat bentuk tiga dimensi yang dihasilkan cukup mudah untuk divisualisasikan. Ituplot_wireframe() fungsi digunakan untuk tujuan -
from mpl_toolkits import mplot3d
import numpy as np
import matplotlib.pyplot as plt
def f(x, y):
return np.sin(np.sqrt(x ** 2 + y ** 2))
x = np.linspace(-6, 6, 30)
y = np.linspace(-6, 6, 30)
X, Y = np.meshgrid(x, y)
Z = f(X, Y)
fig = plt.figure()
ax = plt.axes(projection='3d')
ax.plot_wireframe(X, Y, Z, color='black')
ax.set_title('wireframe')
plt.show()
Baris kode di atas akan menghasilkan output berikut -