home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 5.ddi / SPLINES.DI$ / TITANIUM.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  754 b   |  18 lines

  1. function [x,y]=titanium
  2. % TITANIUM    Test data set; difficult to model.
  3. %
  4. %      [x,y] = titanium
  5. %
  6. %  returns the data points of the Titanium Heat data which give a certain
  7. %  property of titanium as a function of temperature and which have been
  8. %  used extensively as test data for fitting by splines with variable knots.
  9. % Copyright (c) 1990-92 by Carl de Boor and The MathWorks, Inc.
  10.  
  11. x=585+[1:49]*10;
  12. y=[.644  .622  .638  .649  .652  .639  .646  .657  .652  .655  ...
  13.    .644  .663  .663  .668  .676  .676  .686  .679  .678  .683  ...
  14.    .694  .699  .710  .730  .763  .812  .907 1.044 1.336 1.881];
  15. y=[ y ...
  16.   2.169 2.075 1.598 1.211  .916  .746  .672  .627  .615  .607  ...
  17.    .606  .609  .603  .601  .603  .601  .611  .601  .608];
  18.