摘要: 上代码 import numpy as np import matplotlib.pyplot as plt def f(x): return x*x*x+2*x+1.2**x; def plot_f(): x = np.linspace(1,100,1000) y = f(x) # plt.fig 阅读全文
posted @ 2020-03-12 15:11 SunCY 阅读(614) 评论(0) 推荐(0) 编辑