Python用matplotlib繪製3D圖片

from matplotlib import pyplot as plt import numpy as np from mpl_toolkits.mplot3d import Axes3D def gauss(x, y, c1, c2): return np.exp(-1 * ((x - c1) ** 2 + (y - c2) ** 2) / 2) fig = plt.figure(
相關文章
相關標籤/搜索