y = np.arange(0, 25, 1) x, y = np.meshgrid(x, y) z = x + y. 3. Draw a plot fig = plt.figure() axes = fig.gca(projection ='3d') axes.plot_surface(x, y, z)
確定! 回上一頁