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

  1. # Copyright (C) 1996,1998 A. Scottedward Hodel 
  2. #
  3. # This file is part of Octave. 
  4. #
  5. # Octave is free software; you can redistribute it and/or modify it 
  6. # under the terms of the GNU General Public License as published by the 
  7. # Free Software Foundation; either version 2, or (at your option) any 
  8. # later version. 
  9. # Octave is distributed in the hope that it will be useful, but WITHOUT 
  10. # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
  11. # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License 
  12. # for more details.
  13. # You should have received a copy of the GNU General Public License 
  14. # along with Octave; see the file COPYING.  If not, write to the Free 
  15. # Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  16.  
  17. function [num,den] = zp2tf(zer,pol,k)
  18. # [num,den] = zp2tf(zer,pol,k)
  19. # Converts zeros / poles to a transfer function.
  20. #
  21. # Inputs:
  22. #   zer, pol: vectors of (possibly complex) poles and zeros of a transfer
  23. #             function.  Complex values should appear in conjugate pairs
  24. #   k: real scalar (leading coefficient)
  25. # Forms the transfer function num/den from
  26. # the vectors of poles and zeros.  K is a scalar gain associated with the
  27. # zeros.
  28.  
  29. # Find out whether data was entered as a row or a column vector and
  30. # convert to a column vector if necessary
  31. # Written by A. S. Hodel with help from students Ingram, McGowan.
  32. # a.s.hodel@eng.auburn.edu
  33. #
  34.  
  35.   [rp,cp] = size(pol);
  36.   [rz,cz] = size(zer);
  37.  
  38.   if(!(is_vec(zer) | isempty(zer)) )
  39.     error(sprintf("zer(%dx%d) must be a vector",rz,cz));
  40.   elseif(!(is_vec(pol) | isempty(pol)) )
  41.     error(sprintf("pol(%dx%d) must be a vector",rp,cp));
  42.   elseif(length(zer) > length(pol))
  43.     error(sprintf("zer(%dx%d) longer than pol(%dx%d)",rz,cz,rp,cp));
  44.   endif
  45.  
  46.   num = k;  den = 1;        # initialize converted polynoms
  47.  
  48.   # call zp2ssg2 if there are complex conjugate pairs left, otherwise
  49.   # construct real zeros one by one.  Repeat for poles.
  50.   while(!isempty(zer))
  51.     if( max(abs(imag(zer))) )     [poly,zer] = zp2ssg2(zer);
  52.     else                          poly = [1 -zer(1)];  
  53.                                   zer = zer(2:length(zer));      endif
  54.     num = conv(num,poly);
  55.   endwhile
  56.  
  57.   while(!isempty(pol))
  58.     if( max(abs(imag(pol))) )     [poly,pol] = zp2ssg2(pol);
  59.     else                          poly = [1 -pol(1)];  
  60.                                   pol = pol(2:length(pol));      endif
  61.     den = conv(den,poly);
  62.   endwhile
  63.  
  64. endfunction
  65.