tiange 发表于 2006-10-19 09:52

这个微分方程组 用matlab能不能编程解出来,请大家指点

我自己编的程序:
dsolve('D2q1=-(w1^2+B1*K1)*q1-(2*e1*w1+B1*K3)*Dq1-(B1*K2)*q2-(B1*K4)*Dq2','D2q2=-(w2^2+B2*K2)*q2-(2*e2*w2+B2*K4)*Dq2-(B2*K1)*q1-(B2*K3)*Dq1','q1(0)=0.05','q2(0)=0.05','Dq1(0)=0','Dq2(0)=0')

用matlab 运行后的结果:
Warning: Explicit solution could not be found.
> In C:\MATLAB6p5\toolbox\symbolic\dsolve.m at line 326

ans =
[ empty sym ]

请问:这样的方程组能不能用matlab解出来
如果能,那应该怎样编程呢!

我这里已经把初值设定了,q1(0)=q2(0)=0.05,他们一阶导数在0时候的初值为0

[ 本帖最后由 ChaChing 于 2010-6-14 00:44 编辑 ]

fanghuikeer 发表于 2006-10-19 11:07

If dsolve cannot find an analytic solution for an equation, it prints the warning
Warning: explicit solution could not be found and return an empty sym object.

dsolve
Symbolic solution of ordinary differential equations
常微分方程的符号解,但是无法找到,所以你的问题这样解是不行的,考虑一下其他的函数.

[ 本帖最后由 ChaChing 于 2010-6-14 00:45 编辑 ]

happy 发表于 2006-10-20 09:35

尝试用bvp4c看看
页: [1]
查看完整版本: 这个微分方程组 用matlab能不能编程解出来,请大家指点