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

  1. echo off
  2. %    CASE STUDIES IN SYSTEM IDENTIFICATION
  3. %    *************************************
  4. %
  5. %    In this selction of case studies we illustrate typical techniques
  6. %    and useful tricks when dealing with various system identification
  7. %    problems.
  8. %    
  9. %    Case studies:
  10. %
  11. %    1) A glass tube manufactoring process
  12. %    2) Energizing a transformer
  13. %
  14. %    0) Quit
  15. %
  16. %    (NOTE: If you have a computer with limited memory, and you encounter
  17. %    "out of memory" problems, you may print the respective case study
  18. %    file (it's called csj, where j is the case study #), and follow
  19. %    the steps by hand, packing and clearing whenever required.)
  20. %
  21.  
  22. while (1)
  23.     clc,clg, help cs
  24.     k = input('Select a case study number: ');
  25.     if k == 0, break, end
  26.     if k==1, cs1, end
  27.     if k==2, cs2, end
  28. end
  29.