标题:微分方程错误..Error using ==> feval
取消只看楼主
慢跑20
Rank: 1
等 级:新手上路
帖 子:10
专家分:0
注 册:2013-4-23
结帖率:0
 问题点数:0 回复次数:0 
微分方程错误..Error using ==> feval
课本传染病模型SIR.
先建立M文件
function y=ill(t,x)
a=1;b=0.3;
y=[a*x(1)*x(2)-b*x(1),-a*x(1)*x(2)]';
然后再MATLAB中输入:
ts=0:50;
x0=[0.02,0.98];
[t,x]=ode45('ill',ts,x0);[t,x]
Plot(t,x(:1,),t,x(:,2)),grid,pause
Plot(x(:,2),x(:,1)),grid
function y=ill(t,x)
a=1;b=0.3;
y=[a*x(1)*x(2)-b*x(1),-a*x(1)*x(2)]';

就会:
显示错误:
如下:
??? Error using ==> feval
Undefined command/function 'ill'.

Error in ==> funfun\private\odearguments at 110
f0 = feval(ode,t0,y0,args{:});   % ODE15I sets args{1} to yp0.

Error in ==> ode45 at 173
[neq, tspan, ntspan, next, t0, tfinal, tdir, y0, f0, odeArgs, ...

>>
啥问题呢?
搜索更多相关主题的帖子: command 传染病 function private 
2013-05-11 17:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-406829-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.183888 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved