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

  1. function T=gett(th);
  2. %GETT    Gets the sampling interval for a model
  3. %
  4. %    T = gett(TH)
  5. %
  6. %    T: The sampling interval
  7. %    TH: The model, defined in the THETA-format (See Help theta)
  8.  
  9. %    L. Ljung 10-2-90
  10. %    Copyright (c) 1990 by the MathWorks, Inc.
  11. %    All Rights Reserved.
  12.     
  13. T=th(1,2);
  14.