File: fstabst.cat

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (49 lines) | stat: -rw-r--r-- 1,246 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

fstabst(1)                     Scilab Function                     fstabst(1)
NAME
  fstabst - Youla's parametrization

CALLING SEQUENCE
  [J]=fstabst(P,r)

PARAMETERS

  P         : syslin list (linear system)

  r         : 1x2 row vector, dimension of P22

  J         : syslin list (linear system in state-space representation)

DESCRIPTION
  Parameterization of all stabilizing feedbacks.

  P is partitioned as follows:
  P=[ P11 P12;
      P21 P22]
  (in state-space or transfer form: automatic conversion in state-space is
  done for the computations)

  r = size of  P22 subsystem, (2,2) block of P
            J =[ J11 J12;
                 J21 J22]
  K is a stabilizing controller for P (i.e. P22) iff K=lft(J,r,Q) with Q
  stable.

  The central part of J , J11 is the lqg regulator for P

  This J is such that defining T as the 2-port lft of P and J :
  [T,rt]=lft(P,r,J,r) one has that T12 is inner and T21 is co-inner.

EXAMPLE
  ny=2;nu=3;nx=4;
  P22=ssrand(ny,nu,nx);
  bigQ=rand(nx+nu,nx+nu);bigQ=bigQ*bigQ';
  bigR=rand(nx+ny,nx+ny);bigR=bigR*bigR';
  [P,r]=lqg2stan(P22,bigQ,bigR);
  J=fstabst(P,r);
  Q=ssrand(nu,ny,1);Q('A')=-1;  //Stable Q
  K=lft(J,r,Q);
  A=h_cl(P,r,K); spec(A)

SEE ALSO
  obscont, lft, lqg, lqg2stan