“Fungsi Numpy MeshGrid” Kode Jawaban

Fungsi Numpy MeshGrid

x = np.linspace(-5, 5, 101)
>>> y = np.linspace(-5, 5, 101)
>>> # full coorindate arrays
>>> xx, yy = np.meshgrid(x, y)
>>> zz = np.sqrt(xx**2 + yy**2)
>>> xx.shape, yy.shape, zz.shape
((101, 101), (101, 101), (101, 101))
>>> # sparse coordinate arrays
>>> xs, ys = np.meshgrid(x, y, sparse=True)
>>> zs = np.sqrt(xs**2 + ys**2)
>>> xs.shape, ys.shape, zs.shape
((1, 101), (101, 1), (101, 101))
>>> np.array_equal(zz, zs)
True
Talented Tamarin

Fungsi Numpy MeshGrid

import matplotlib.pyplot as plt
>>> h = plt.contourf(x, y, zs)
>>> plt.axis('scaled')
>>> plt.colorbar()
>>> plt.show()
Talented Tamarin

Jawaban yang mirip dengan “Fungsi Numpy MeshGrid”

Pertanyaan yang mirip dengan “Fungsi Numpy MeshGrid”

Lebih banyak jawaban terkait untuk “Fungsi Numpy MeshGrid” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya