码迷,mamicode.com
首页 > 编程语言 > 详细

Python解微分方程

时间:2018-05-23 16:11:35      阅读:862      评论:0      收藏:0      [点我收藏+]

标签:AC   常量   element   als   ret   rac   thml   init   fun   

1.求解常微分方程的步骤:

from sympy import *
init_printing()
#定义符号常量x 与 f(x) g(x)。这里的f g还可以用其他字母替换,用于表示函数
x = Symbol(x)
f, g = symbols(f g, cls=Function)

#用diffeq代表微分方程: f‘‘(x) ? 2f‘(x) + f(x) = sin(x) 
diffeq = Eq(f(x).diff(x, x) - 2*f(x).diff(x) + f(x), sin(x))
#调用dsolve函数,返回一个Eq对象,hint控制精度
print(dsolve(diffeq, f(x),hint=1st_linear))

 

 

 

 

Python解微分方程

标签:AC   常量   element   als   ret   rac   thml   init   fun   

原文地址:https://www.cnblogs.com/heaiping/p/9077190.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!