matlab中没有切比雪夫拟合的现成算法,这里把我程序中的这部分抽出来,说一下. 1.首先是切比雪夫计算式 function [ res ] = ChebyShev(num,i) res=; elseif i== res=num; else res=*num*ChebyShev(num,i-)-ChebyShev(num,i-); end end 2.计算拟合系数 function [ coeff ] = ChebyCoeff( xfile,timefile ) x=load(xfile); t