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

  1. function auxvar
  2. %AUXVAR  Auxiliary variables for the parameter estimation schemes
  3. %    MAXITER: The maximum number of iterations to be performed when search
  4. %    ing for the minimum. Default is MAXITER=10. With MAXITER=0 only a non-
  5. %    iterative initial value estimation procedure is carried out.
  6. %
  7. %    TOL: The iterations are continued until the candidate update vector
  8. %    has a norm less than TOL. Default is TOL=0.01. The iterations are also
  9. %    terminated when MAXITER is reached, or when the search procedure fails
  10. %    to find a lower value of the criterion along the candidate direction.
  11. %
  12. %    LIM: The criterion is robustified, so that a residual that is larger
  13. %    than LIM*(estimated standard deviation) carries a linear, rather than
  14. %    quadratic weight. Default is LIM=1.6. LIM=0 means that a non-
  15. %    robustified (truly quadratic) criterion is used.
  16. %
  17. %    MAXSIZE: No matrix with more than MAXSIZE elements is formed by the
  18. %    algorithms. The default value is set by the .m-file idmsize. (On a
  19. %    PC the default value is MAXSIZE = 4096). If you run into
  20. %    memory problems    try lower values of MAXSIZE. See also HELP MEMORY.
  21. %    T: The sampling interval. Default is T=1. T is essential to obtain
  22. %    physical frequency scales, and when transforming to continuous time.
  23. %
  24. %    Omitting trailing arguments or entering them as [] gives default
  25.