Python繪製三維圖形

需要安裝numpy和matplotlib庫,我都是pip庫安裝,這樣比較簡單。 import numpy as np import matplotlib.pyplot as plt  import mpl_toolkits.mplot3d x, y = np.mgrid[-2 : 2 : 20j, -2 : 2 : 20j] z = 50 * np.sin(x + y)              
相關文章
相關標籤/搜索