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

  1. function [a,b,c,d,f]=polyform(th)
  2. %POLYFORM computes the polynomials associated with a given model
  3. %    Synonomous to TH2POLY 
  4. %    [A,B,C,D,F]=polyform(TH)
  5. %
  6. %    TH is the model with format described by HELP THETA.
  7. %
  8. %    A,B,C,D, and F are returned as the corresponding polynomials
  9. %     in the general input-output model. A, C and D are then row
  10. %    vectors, while B and F have as many rows as there are inputs.
  11.  
  12. %    L. Ljung 10-1-86
  13. %    Copyright (c) 1986-90 by the MathWorks, Inc.
  14. %    All Rights Reserved.
  15.  
  16. [a,b,c,d,f]=th2poly(th);
  17.