function yp = nonlinear (t,y)
e=0.2;
yp(1)=y(2);
yp(2) = (-y(1)-e*y(1)^3);
tspan = [0.20];
y0=[0;0]
[t,y]=ode45('nonlinear',tpsan,y0)
plot (t,y(:,1))
grid
xlabel('time')
ylabel('u')
title ('u vs. t')
hold on;
抱歉,我在 matlab 上绝对是菜鸟,当我尝试执行代码时,它显示“变量 t 的未定义函数”。我正在尝试使用 ode45 来求解微分方程