帮我看下程序
我解一个四元二阶微分方程M文件里:
function odefun=odefun4(t,x,y,z,v)
odefun=[x(2);y(2);z(2);v(2);-1/80*(1000*x(1)+1000*y(1)+800*z(1)+700*v(1));
-1/80*(800*x(1)+1000*y(1)+800*z(1)+700*v(1));
-1/10*(50*z(2)+700*x(1)+600*y(1)+700*z(1))+1000;
-1/80*(60*v(2)+850*x(1)+550*y(1)+650*v(1))];
主程序里面:
=ode45('odefun4',,{,,;}
提示错误啊
??? Error using ==> vertcat
All rows in the bracketed expression must have the same
number of columns. 没有续行标志 “...”
[ 本帖最后由 eight 于 2007-7-9 21:42 编辑 ]
页:
[1]