Exa14.m
上传用户:eighthdate
上传日期:2014-05-24
资源大小:270k
文件大小:0k
源码类别:

其他行业

开发平台:

Matlab

  1. x = [ 0  0.5  1.0  1.5  2.0  2.5  3.0  3.5  4.0  4.5  5.0];
  2. y = [10   10  16   24   30   38   52    68   82   96  123];
  3. p = polyfit(x, y, 2)   % finds the coefficients of a polynomial
  4.                        % of degree 2 that fits the data
  5. yc = polyval(p, x);    % polynomial is evaluated at all points in x
  6. plot(x, y,'x', x, yc)  % plots data marked by x and fitted polynomial
  7. xlabel('x'), ylabel('y'), grid
  8. title('Polynomial curve fitting')
  9. legend('Actual data', 'Fitted polynomial')