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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1993-03-11
|
205 b
|
6 lines
function f=EIGFUN(x,A,B,C)
%EIGFUN Function to return sorted eigenvalues (used in GOALDEMO).
% EIGFUN(x,A,B,C) returns eigenvalues of closed loop system
% with output feedback.
f=sort(eig(A+B*x*C));