wyp386 发表于 2007-7-7 20:55

帮我看下程序

我解一个四元二阶微分方程
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.

VibrationMaster 发表于 2007-7-8 14:30

没有续行标志 “...”

[ 本帖最后由 eight 于 2007-7-9 21:42 编辑 ]
页: [1]
查看完整版本: 帮我看下程序