home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 9.ddi / IDENT.DI$ / IDDEMO.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  971 b   |  34 lines

  1. echo off
  2. %    The SYSTEM IDENTIFICATION TOOLBOX is an analysis module
  3. %    that contains tools for building mathematical models of 
  4. %    dynamical systems, based upon observed input-output data.
  5. %    The toolbox contains both PARAMETRIC and NON-PARAMETRIC
  6. %    MODELING methods.
  7. %
  8. %    Identification Toolbox demonstrations:
  9. %
  10. %    1) Build simple models from real laboratory process data.
  11. %    2) Compare different identification methods.
  12. %    3) Model structure determination case study.
  13. %    4) Spectrum estimation (Marple's test case).
  14. %    5) Adaptive/Recursive algorithms.
  15. %    6) Segmentation of data and models.
  16. %    7) State-space and multi-output models.
  17. %    8) Case studies
  18. %
  19. %    0) Quit
  20.  
  21. while (1)
  22.     clc,clf, help iddemo
  23.     k = input('Select a demo number: ');
  24.     if k == 0, break, end
  25.     if k==1, iddemo1, end
  26.     if k==2, iddemo2, end
  27.     if k==3, iddemo3, end
  28.     if k==4, iddemo4, end
  29.     if k==5, iddemo5, end
  30.     if k==6, iddemo6, end
  31.     if k==7, iddemo7, end
  32.     if k==8, cs,      end
  33. end
  34.