home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l460 / 3.ddi / DEMOS.DI$ / DATALIST.M < prev    next >
Encoding:
Text File  |  1993-03-07  |  675 b   |  29 lines

  1. function datalist
  2. %DATALIST List of data analysis examples.
  3. %    DATALIST, by itself, presents a list of data analysis examples.
  4. %    Used by DEMO.
  5.  
  6. %    Copyright (c) 1984-93 by The MathWorks, Inc.
  7.  
  8. % Labels
  9. labels = str2mat(...
  10.    'Spectral Analysis', ...
  11.    'Earthquake Example', ...
  12.    'Discrete Transform',...
  13.    'Continuous Transform',...
  14.    'Census Example', ...
  15.    'Graphics Input', ...
  16.    'Sunspot Data');
  17.  
  18. % Callbacks
  19. callbacks = [ ...
  20.     'fftdemo        '
  21.     'quake          '
  22.     'sigdemo1       '
  23.     'sigdemo2       '
  24.     'census         '
  25.     'spline2d       '
  26.     'sunspots       '];
  27.  
  28. choices('DATA', 'Data Analysis', labels, callbacks);
  29.