home *** CD-ROM | disk | FTP | other *** search
- echo off
- % CASE STUDIES IN SYSTEM IDENTIFICATION
- % *************************************
- %
- % In this selction of case studies we illustrate typical techniques
- % and useful tricks when dealing with various system identification
- % problems.
- %
- % Case studies:
- %
- % 1) A glass tube manufactoring process
- % 2) Energizing a transformer
- %
- % 0) Quit
- %
- % (NOTE: If you have a computer with limited memory, and you encounter
- % "out of memory" problems, you may print the respective case study
- % file (it's called csj, where j is the case study #), and follow
- % the steps by hand, packing and clearing whenever required.)
- %
-
- while (1)
- clc,clg, help cs
- k = input('Select a case study number: ');
- if k == 0, break, end
- if k==1, cs1, end
- if k==2, cs2, end
- end
-