func13.m
上传用户:zhdd911129
上传日期:2007-05-11
资源大小:722k
文件大小:0k
源码类别:

matlab例程

开发平台:

Matlab

  1. %func13
  2. %polynomial Fitting,the residue analysis willbe show at the end
  3. x=linspace(1,8,8)
  4. y=[15.3,20.5,27.4,36.6,49.1,65.6,87.8,117.6];
  5. y = log(y);
  6. [p,S] = polyfit(x,y,1)
  7. f = polyval(p,x);
  8. y=exp(y)
  9. f=exp(f)
  10. plot(x,y,'o',x,f,'-')
  11. disp(abs(norm(y,inf)-norm(f,inf)))
  12. %b=0.29121601623819   a=2.43685970632819
  13. %the residure is (defined by infinite norm on those vector) :0.0824
  14. %can also see the figure