matlab x=0:6:15; y=10*(x^2+1).^(-3/2).*[1-3/(x^2+1)]; plot(y);

问题描述:

matlab x=0:6:15; y=10*(x^2+1).^(-3/2).*[1-3/(x^2+1)]; plot(y);

>> x=0:15;
>> y=10*(x.^2+1).^(-3/2).*[1-3./(x.^2+1)];
>> plot(x,y)
>>