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

  1. # Copyright (C) 1996 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 [wmin,wmax] = bode_bnd(zer,pol,DIGITAL,tsam)
  18. # function [wmin,wmax] = bode_bnd(zer,pol,DIGITAL{,tsam})
  19. # get default range of frequencies for system zeros and poles
  20. #
  21. # frequency range is the interval [10^wmin,10^wmax]
  22. #
  23. # used internally in freqresp
  24.  
  25.   # make sure zer,pol are row vectors
  26.   if(!isempty(pol)) pol = reshape(pol,1,length(pol)); endif
  27.   if(!isempty(zer)) zer = reshape(zer,1,length(zer)); endif
  28.  
  29. # check for natural frequencies away from omega = 0
  30.   if (DIGITAL)
  31.     # The 2nd conditions prevents log(0) in the next log command
  32.     iiz = find(abs(zer - 1) > norm(zer) * eps && abs(zer) > norm(zer) * eps);
  33.     iip = find(abs(pol - 1) > norm(pol) * eps && abs(pol) > norm(pol) * eps);
  34.  
  35.     # avoid dividing empty matrices, it would work but looks nasty
  36.     if (!isempty(iiz)) czer = log(zer(iiz))/tsam;
  37.     else               czer = [];                 endif
  38.  
  39.     if (!isempty(iip)) cpol = log(pol(iip))/tsam;
  40.     else            cpol = [];                 endif
  41.  
  42.   else
  43.     # continuous
  44.     iip = find((abs(pol)) > (norm(pol) * eps));
  45.     iiz = find((abs(zer)) > (norm(zer) * eps));
  46.  
  47.     if(!isempty(zer)) czer = zer(iiz);
  48.     else              czer = [];                endif
  49.     if(!isempty(pol)) cpol = pol(iip);
  50.     else              cpol = [];                endif
  51.   endif
  52.  
  53.   if(max(size(iip)) + max(size(iiz)) )
  54.     wmin = floor(log10(min(abs([cpol,czer]))));
  55.     wmax = ceil(log10(max(abs([cpol,czer]))));
  56.   else
  57.     # no poles/zeros away from omega = 0; pick defaults
  58.     wmin = -1;
  59.     wmax = 3;
  60.   endif
  61.  
  62.   # expand to show the entirety of the "interesting" portion of the plot
  63.   wmin--;
  64.   wmax++;
  65.  
  66.   # run digital frequency all the way to pi
  67.   if (DIGITAL) wmax = log10(pi/tsam); endif
  68. endfunction
  69.