for n=1:100
fx=inline('exp(((-n).*(1/pi).*(acos(x)-x.*sqrt(1-x.*x))))','x','n'); %1求积分,注意有变量n
ls=quadl(fx,-1,1,1e-6,10,n);
y=1+exp(-n)-ls
plot(n,y,'r--')
end
for n=1:100
fx=inline('exp(((-n).*(1/pi).*(acos(x)-x.*sqrt(1-x.*x))))','x','n'); %1求积分,注意有变量n
ls=quadl(fx,-1,1,1e-6,10,n);
y=1+exp(-n)-ls;
plot(n,y,'r--'); hold on
end
这样可以,不过画出来的是点