摘要: 2.1 import math import pylab as plt import numpy as np x = np.linspace(-10, 10, 100) y1 = np.cosh(x) y2 = np.sinh(x) y3 = math.e**x/2 plt.plot(x, y1, 阅读全文
posted @ 2024-10-24 23:53 cjl110 阅读(6) 评论(0) 推荐(0) 编辑