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

  1. # Copyright (C) 1998 Kai P. Mueller
  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 wsys = wgt1o(vl, vh, fc)
  18. # wgt10  State space description of a first order weighting function.
  19. #
  20. #     wsys = wgt1o(vl, vh, fc)
  21. #
  22. # Weighting function are needed by the H2/H_infinity design procedure.
  23. # These function are part of thye augmented plant P (see hinfdemo
  24. # for an applicattion example).
  25. #
  26. # vl = Gain @ low frequencies
  27. # vh = Gain @ high frequencies
  28. # fc = Corner frequency (in Hz, *not* in rad/sec)
  29.  
  30. # Written by Kai P. Mueller September 30, 1997
  31.  
  32.   if (nargin != 3)
  33.     usage("wsys = wgt1o(vl, vh, fc)");
  34.   endif
  35.  
  36.   if(nargout > 1)
  37.     usage("wsys = wgt1o(vl, vh, fc)");
  38.   endif
  39.  
  40.   if (vl == vh)
  41.       a = [];
  42.       b = [];
  43.       c = [];
  44.   else
  45.       a = [-2*pi*fc];
  46.       b = [-2*pi*fc];
  47.       c = [vh-vl];
  48.   endif
  49.   d=[vh];
  50.  
  51.   wsys = ss2sys(a,b,c,d);
  52. endfunction
  53.