Matlab ode45('youmofangcheng',[0:T/100:2200*T],x0,[],w);global w;omega=50:10:500;x0=[0.000001;0;0.000001;0;0.000001;0;0.000001;0;];k=length(omega);options=odeset;options.reltol=1*10^(-5);options.abstol=1*10^(-5);for h=1:kw=omega(h);T=2*pi;[t,x]=ode45
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/08 22:44:58
Matlab ode45('youmofangcheng',[0:T/100:2200*T],x0,[],w);global w;omega=50:10:500;x0=[0.000001;0;0.000001;0;0.000001;0;0.000001;0;];k=length(omega);options=odeset;options.reltol=1*10^(-5);options.abstol=1*10^(-5);for h=1:kw=omega(h);T=2*pi;[t,x]=ode45
Matlab ode45('youmofangcheng',[0:T/100:2200*T],x0,[],w);
global w;
omega=50:10:500;
x0=[0.000001;0;0.000001;0;0.000001;0;0.000001;0;];
k=length(omega);
options=odeset;
options.reltol=1*10^(-5);
options.abstol=1*10^(-5);
for h=1:k
w=omega(h);
T=2*pi;
[t,x]=ode45('youmofangcheng',[0:T/100:2200*T],x0,[],w);
错在哪里了,最后一部提示时间范围不用方括号,可以用圆括号,这不科学啊
Matlab ode45('youmofangcheng',[0:T/100:2200*T],x0,[],w);global w;omega=50:10:500;x0=[0.000001;0;0.000001;0;0.000001;0;0.000001;0;];k=length(omega);options=odeset;options.reltol=1*10^(-5);options.abstol=1*10^(-5);for h=1:kw=omega(h);T=2*pi;[t,x]=ode45
[0:T/100:2200*T] 中的":"改为逗号或空格