摘要:
8.4 点击查看代码 import numpy as np import matplotlib.pyplot as plt from scipy.integrate import solve_ivp def system(t, state): x, y = state dxdt = -x*3 - y 阅读全文
摘要:
7.1 点击查看代码 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.sin(x) 阅读全文