home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21eb.zip / octave / SCRIPTS.ZIP / scripts.fat / control / tzero2.m < prev    next >
Text File  |  1999-04-29  |  2KB  |  64 lines

  1. # Copyright (C) 1993 John W. Eaton
  2. # This file is part of Octave.
  3. # Octave is free software; you can redistribute it and/or modify it
  4. # under the terms of the GNU General Public License as published by the
  5. # Free Software Foundation; either version 2, or (at your option) any
  6. # later version.
  7. # Octave is distributed in the hope that it will be useful, but WITHOUT
  8. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  9. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  10. # for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with Octave; see the file COPYING.  If not, write to the Free
  13. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  
  15. function zr = tzero2 (a, b, c, d, bal)
  16.  
  17. # Usage: zr = tzero2 (a, b, c, d, bal)
  18. #
  19. # Compute the transmission zeros of a, b, c, d.
  20. #
  21. # bal = balancing option (see balance); default is "B".
  22. #
  23. # Needs to incorporate mvzero algorithm to isolate finite zeros.
  24.  
  25. # Written by A. S. Hodel (scotte@eng.auburn.edu) August 1993.
  26.  
  27.   if (nargin == 4)
  28.     bal = "B";
  29.   elseif (nargin != 5)
  30.     error ("tzero: illegal number of arguments");
  31.   endif
  32.  
  33.   [n, m, p] = abcddim (a, b, c, d);
  34.  
  35.   if (n > 0 && m > 0 && p > 0)
  36.     if (m != p)
  37.       fprintf (stderr, "tzero: number of inputs,outputs differ.  squaring up");
  38.       if (p > m)
  39.     fprintf (stderr, "       by padding b and d with zeros.");
  40.     b = [b, zeros (n, p-m)];
  41.     d = [d, zeros (p, p-m)];
  42.     m = p;
  43.       else
  44.     fprintf (stderr, "       by padding c and d with zeros.");
  45.     c = [c; zeros (m-p, n)];
  46.     d = [d; zeros (m-p, m)];
  47.     p = m;
  48.       endif
  49.       fprintf (stderr, "This is a kludge.  Try again with SISO system.");
  50.     endif
  51.     ab = [-a, -b; c, d];
  52.     bb = [eye (n), zeros (n, m); zeros (p, n), zeros (p, m)];
  53.     [ab,bb] = balance (ab, bb);
  54.     zr = -qz (ab, bb);
  55.   else
  56.     error ("tzero: a, b, c, d not compatible.  exiting");
  57.   endif
  58.  
  59. endfunction
  60.