摘要: 8.4 点击查看代码 #学号17 import numpy as np import matplotlib.pyplot as plt from scipy.integrate import solve_ivp def system(t, state): x, y = state dxdt = -x 阅读全文
posted @ 2024-11-18 17:27 ..3017 阅读(13) 评论(0) 推荐(0)
摘要: 7.1 点击查看代码 #学号17 import numpy as np import scipy.interpolate as spi import scipy.integrate as spi_integrate def g(x): return ((3*x**2 + 4*x + 6) * np. 阅读全文
posted @ 2024-11-18 17:24 ..3017 阅读(18) 评论(0) 推荐(0)