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

  1. function t=isthss(th)
  2. %ISTHSS    Tests if the model structure is of state-space type
  3. %
  4. %    t = isthss(TH)
  5. %
  6. %    TH: The model structure in the THETA-format (See help theta)
  7. %    t is true if TH is of state-space type, else false
  8.  
  9. %    L. Ljung 10-2-90
  10. %    Copyright (c) 1990 by the MathWorks, Inc.
  11. %    All Rights Reserved.
  12.  
  13. t=(th(2,7)>20);
  14.