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

matlab例程

开发平台:

Matlab

  1. x=linspace(.5,3.0,6)
  2. y=[1.75,2.45,3.81,4.80,7.00,8.60]
  3. p=polyfit(x,y,3)
  4. xx=linspace(0.5,3,100)
  5. yy=polyval(p,xx)
  6. plot(xx,yy,'-')
  7. f=polyval(p,x)
  8. disp(abs(norm(y,inf)-norm(f,inf)))
  9. %the residue is (defined by infinite norm on those vector) : 0.0950
  10. %如提高为用三次多项式拟合,residue= 0.0517,更为精确;
  11. %can also see the figure