文件名称:用chebyshev方法求e^x的三次最佳逼近
文件大小:398B
文件格式:NONE
更新时间:2013-05-22 05:48:49
matlab chebyshev逼近
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…………
文件名称:用chebyshev方法求e^x的三次最佳逼近
文件大小:398B
文件格式:NONE
更新时间:2013-05-22 05:48:49
matlab chebyshev逼近
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…………