Python for Differential Equations

2021/6/26 11:56:54

本文主要是介绍Python for Differential Equations,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

from sympy import *
import numpy as np


c, t = symbols('c, t')

expr = c*(4 - c)
# Solve c(4 - c) = 0:
equil = solve(expr, c)
print(equil)
ys = np.arange(-2, 7) # how to generate an appropriate array includes equil automatically?
dys = np.array([expr.subs(c, yi) for yi in ys])
print(ys, dys)


# Solve the differential equation y' = y(4 - y):
y = Function('y')
dsols = dsolve(Eq(y(t).diff(t), y(t)*(4 - y(t))), y(t))

 



这篇关于Python for Differential Equations的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程