注意
转到结尾 下载完整的示例代码。
距离练习¶
在网格中绘制距离
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 秒)
注意
转到结尾 下载完整的示例代码。
在网格中绘制距离
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 秒)