使用matplotlib繪製三維圖形

一 代碼 import numpy as np import matplotlib.pyplot as plt import mpl_toolkits.mplot3d x,y = np.mgrid[-2:2:20j,-2:2:20j] #測試數據 z=x*np.exp(-x**2-y**2) #三維圖形 ax = plt.subplot(111, projection='3d') ax.plot_
相關文章
相關標籤/搜索