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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
## Copyright (C) 1996, 2000, 2002, 2004, 2005, 2006, 2007
## Auburn University. All rights reserved.
##
##
## This program is free software; you can redistribute it and/or modify it
## under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 3 of the License, or (at
## your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; see the file COPYING. If not, see
## <http://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {Function File} {} starp (@var{P}, @var{K}, @var{ny}, @var{nu})
##
## Redheffer star product or upper/lower LFT, respectively.
## @example
## @group
##
## +-------+
## --------->| |--------->
## | P |
## +--->| |---+ ny
## | +-------+ |
## +-------------------+
## | |
## +----------------+ |
## | |
## | +-------+ |
## +--->| |------+ nu
## | K |
## --------->| |--------->
## +-------+
## @end group
## @end example
## If @var{ny} and @var{nu} ``consume'' all inputs and outputs of
## @var{K} then the result is a lower fractional transformation.
## If @var{ny} and @var{nu} ``consume'' all inputs and outputs of
## @var{P} then the result is an upper fractional transformation.
##
## @var{ny} and/or @var{nu} may be negative (i.e. negative feedback).
## @end deftypefn
## Author: Kai P. Mueller <mueller@ifr.ing.tu-bs.de>
## Created: May 1998
function sys = starp (P, K, ny, nu);
if (nargin != 2 && nargin != 4)
print_usage ();
endif
if (! isstruct (P))
error ("---> P must be in system data structure");
endif
if (! isstruct (K))
error ("---> K must be in system data structure");
endif
P = sysupdate (P, "ss");
[n, nz, mp, pp] = sysdimensions (P);
np = n + nz;
K = sysupdate (K, "ss");
[n, nz, mk, pk] = sysdimensions (K);
nk = n + nz;
ny_sign = 1;
nu_sign = 1;
if (nargin == 2)
## perform a LFT of P and K (upper or lower)
ny = min ([pp, mk]);
nu = min ([pk, mp]);
else
if (ny < 0)
ny = -ny;
ny_sign = -1;
endif
if (nu < 0)
nu = -nu;
nu_sign = -1;
endif
endif
if (ny > pp)
error ("---> P has not enough outputs.");
endif
if (nu > mp)
error ("---> P has not enough inputs.");
endif
if (ny > mk)
error ("---> K has not enough inputs.");
endif
if (nu > pk)
error ("---> K has not enough outputs.");
endif
nwp = mp - nu;
nzp = pp - ny;
nwk = mk - ny;
nzk = pk - nu;
if (nwp + nwk < 1)
error ("---> no inputs left for star product.");
endif
if (nzp + nzk < 1)
error ("---> no outputs left for star product.");
endif
## checks done, form sys
if (nzp)
Olst = 1:nzp;
endif
if (nzk)
Olst = [Olst, pp+nu+1:pp+pk];
endif
if (nwp)
Ilst = 1:nwp;
endif
if (nwk)
Ilst = [Ilst, mp+ny+1:mp+mk];
endif
Clst = zeros (ny+nu, 2);
for ii = 1:nu
Clst(ii,:) = [nwp+ii, nu_sign*(pp+ii)];
endfor
for ii = 1:ny
Clst(nu+ii,:) = [mp+ii, ny_sign*(nzp+ii)];
endfor
sys = buildssic (Clst, [], Olst, Ilst, P, K);
endfunction
|