距离练习

在网格中绘制距离

plot distances
import numpy as np
import matplotlib.pyplot as plt
x, y = np.arange(5), np.arange(5)[:, np.newaxis]
distance = np.sqrt(x**2 + y**2)
plt.pcolor(distance)
plt.colorbar()
plt.show()

脚本总运行时间:(0 分钟 0.068 秒)

由 Sphinx-Gallery 生成的图库