home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l455 / 4.ddi / OPTIM.DI$ / EIGFUN.M < prev    next >
Encoding:
Text File  |  1993-03-11  |  205 b   |  6 lines

  1. function f=EIGFUN(x,A,B,C)
  2. %EIGFUN Function to return sorted eigenvalues (used in GOALDEMO).
  3. %    EIGFUN(x,A,B,C) returns eigenvalues of closed loop system 
  4. %    with output feedback.
  5. f=sort(eig(A+B*x*C));
  6.