chebyshev三次最佳逼近代码 clear clc format long a=0;b=1;n=3; for j=0:n x(j+1)=0.5*(a+b+(b-a)*cos((j+0.5)*pi/(n+1))); end for i=1:n+1 c(i)=exp(x(i)); end…………