陆羽樊
2007-12-23, 19:28
问题:
The when it is compressed by an amount x m by the mass, the force, F(x), in the spring is given to be F(x) =k1x^a+k2x^b. Produce a plot showing the variation of F vs. x for 0<=x<=6h
我自己做的,但是怎么都不对,请帮忙纠正
function [f]=f(x)
k1=45000*(1+3)
k2=8100*(1+4)
a=1+0.01*1
b=1.5+0.01*3
f=k1.*x.^a+k2.*x.^b
c=0;
d=6*h;
n=100;
for i=1:n
x=c+(i-1)*d/n;
f_plot=f(x);
end
plot(f_plot,x)
The when it is compressed by an amount x m by the mass, the force, F(x), in the spring is given to be F(x) =k1x^a+k2x^b. Produce a plot showing the variation of F vs. x for 0<=x<=6h
我自己做的,但是怎么都不对,请帮忙纠正
function [f]=f(x)
k1=45000*(1+3)
k2=8100*(1+4)
a=1+0.01*1
b=1.5+0.01*3
f=k1.*x.^a+k2.*x.^b
c=0;
d=6*h;
n=100;
for i=1:n
x=c+(i-1)*d/n;
f_plot=f(x);
end
plot(f_plot,x)