Documentation of cs


Global Index (short | long) | Local contents | Local Index (short | long)


Help text

   CASE STUDIES IN SYSTEM IDENTIFICATION
   *************************************

   In this selection of case studies we illustrate typical techniques
   and useful tricks when dealing with various system identification
   problems.
   
   Case studies:

   1) A glass tube manufacturing process
   2) Energizing a transformer

   0) Quit

   (NOTE: If you have a computer with limited memory, and you encounter
   "out of memory" problems, you can 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.)


Cross-Reference Information

This script calls

Listing of script cs


echo off

%   L. Ljung
%   Copyright (c) 1986-98 by The MathWorks, Inc.
%   $Revision: 2.5 $  $Date: 1997/12/02 03:41:20 $

while (1)
        help cs
        k = input('Select a case study number: ');
	if isempty(k),k=3;end
        if k == 0, break, end
        if k==1, cs1, end
        if k==2, cs2, end
end