Runge kutta 问题求助
Runge kutta (MATLAB)拜托求解:
Q1: find the solutions of differential equations by using Runge kutta and adams formula method T1,T2and T3
at Time 200 sec. Initial conditions T1=100 T2=110 T3=120 (MATLAB)
dT1/dt =5t-1,
dT2/dt=6t-1 ,
dT3/dt=10t-1
谢谢!
[ 本帖最后由 eight 于 2007-9-4 09:19 编辑 ]
回复 #1 lasak_kia 的帖子
你的问题是个纯线性微分方程组.我编了个程序你看看.建议可以看看MATLAB方面的书,一般都讲的很清楚哦!function xdot=xianeq(t,T)
xdot=;
%调用上面函数
t_final=200;
T0=;
=ode45('xianeq',,T0);
plot(t,T);
figure;
plot3(T(:,1),T(:,2),T(:,3));
附上图形:
[ 本帖最后由 无水1324 于 2007-9-4 09:32 编辑 ] 谢谢你,
我会研究看看!
我是新手!
请多多指教!! mechanic 05.. 我还是解不了。可以给我matlab的solutions吗?
急要。 请帮帮忙!!
谢谢
页:
[1]