matlab绘图问题,t=0:0.1/100:0.1;m=1.18e-6;x0=0.3e-3;k=3.88e-17.*(1./(x.*(0.6e-3-x).^4)-1./(x.*(0.6e-3+x).^4));p=0.001./(2.*sqrt(1.18e-6.*k));w1=sqrt(k./m);w2=w1.*sqrt(1-p.^2);A=sqrt(x0.^2+(p.*w1.*x0./w2).^2);q=atan(w2./(p.*w1));x=A.*exp(-p.*w1.*t)
来源:学生作业帮助网 编辑:六六作业网 时间:2024/11/08 21:54:39
matlab绘图问题,t=0:0.1/100:0.1;m=1.18e-6;x0=0.3e-3;k=3.88e-17.*(1./(x.*(0.6e-3-x).^4)-1./(x.*(0.6e-3+x).^4));p=0.001./(2.*sqrt(1.18e-6.*k));w1=sqrt(k./m);w2=w1.*sqrt(1-p.^2);A=sqrt(x0.^2+(p.*w1.*x0./w2).^2);q=atan(w2./(p.*w1));x=A.*exp(-p.*w1.*t)
matlab绘图问题,
t=0:0.1/100:0.1;
m=1.18e-6;
x0=0.3e-3;
k=3.88e-17.*(1./(x.*(0.6e-3-x).^4)-1./(x.*(0.6e-3+x).^4));
p=0.001./(2.*sqrt(1.18e-6.*k));
w1=sqrt(k./m);
w2=w1.*sqrt(1-p.^2);
A=sqrt(x0.^2+(p.*w1.*x0./w2).^2);
q=atan(w2./(p.*w1));
x=A.*exp(-p.*w1.*t).*sin(w1.*sqrt(1-p.^2).*t+q));
求绘出x-t曲线,其他都是中间变量.
matlab绘图问题,t=0:0.1/100:0.1;m=1.18e-6;x0=0.3e-3;k=3.88e-17.*(1./(x.*(0.6e-3-x).^4)-1./(x.*(0.6e-3+x).^4));p=0.001./(2.*sqrt(1.18e-6.*k));w1=sqrt(k./m);w2=w1.*sqrt(1-p.^2);A=sqrt(x0.^2+(p.*w1.*x0./w2).^2);q=atan(w2./(p.*w1));x=A.*exp(-p.*w1.*t)
t=0:0.1/100:0.1;
m=1.18e-6;
x0=0.3e-3;
k=3.88e-17.*(1./(x0.*(0.6e-3-x0).^4)-1./(x0.*(0.6e-3+x0).^4)); % x -> x0
p=0.001./(2.*sqrt(1.18e-6.*k));
w1=sqrt(k./m);
w2=w1.*sqrt(1-p.^2);
A=sqrt(x0.^2+(p.*w1.*x0./w2).^2);
q=atan(w2./(p.*w1));
x=A.*exp(-p.*w1.*t).*sin(w1.*sqrt(1-p.^2).*t+q); % 多了一个反括号 )
plot(t,x)