MATLAB用ode45求解一阶常微分方程时,提示句柄使用错误,输入参数过多
clear
clc
x = linspace(- pi / 2 , pi / 2 , 100);
y1 = 0.5 * atan(x) .^ 2 + 1;
syms ys(xs);
equs = diff(ys , xs) == atan(xs) / (xs ^ 2 + 1);
conds = ys(0) == 1;
y2 = dsolve(equs , conds);
y2 = subs(y2 , 'xs' , x);
yh = @(xh) atan(xh) ./ (xh .^ 2 + 1);
yh0 = 1;
[x3 , y3] = ode45(yh , x , yh0);
figure
plot(x , y1 , 'o' , x , y2 , 'x' , x , y3 , 's')
legend('analytic solution' , 'dsolve method' , 'ode45 method')
运行结果及报错内容:
错误使用 test0_14_1>@(xh)atan(xh)./(xh.^2+1)
输入参数太多。
出错 odearguments (第 90 行)
f0 = feval(ode,t0,y0,args{:}); % ODE15I sets args{1} to yp0.
出错 ode45 (第 106 行)
odearguments(FcnHandlesUsed, solver_name, ode, tspan, y0, options, varargin);
出错 test0_14_1 (第 14 行)
[x3 , y3] = ode45(yh , x , yh0);
我之前使用ode45函数,格式和这次一模一样, 全都能成功运行,没有报错,就这次突然这样
特此请教