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(
相关文章
相关标签/搜索