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

  1. # Copyright (C) 1993, 1994, 1995 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 [retval,U] = is_stabi (a, b, tol)
  16.  
  17. # Usage: [retval,U] = is_stabi (a {, b, tol})
  18. #
  19. # Returns retval = 1 if the system, a, is stabilizable, if the pair (a, b) is 
  20. # stabilizable, or 0 if not.
  21. #         U = orthogonal basis of controllable subspace.
  22. #
  23. # Controllable subspace is determined by applying Arnoldi iteration with
  24. # complete re-orthogonalization to obtain an orthogonal basis of the
  25. # Krylov subspace.
  26. #
  27. #   span ([b,a*b,...,a^   b]).
  28. #
  29. # tol is a roundoff paramter, set to 200*eps if omitted.
  30. #
  31. # See also: size, rows, columns, length, is_mat, is_scal, is_vec
  32. #     is_obsrv, is_stabi, is_detec
  33.  
  34. # Written by A. S. Hodel (scotte@eng.auburn.edu) August, 1993.
  35. # Updated by A. S. Hodel (scotte@eng.auburn.edu) Aubust, 1995 to use krylovb 
  36. # Updated by John Ingram (ingraje@eng.auburn.edu) July, 1996 to accept systems
  37.  
  38.   if(nargin < 1)        usage("[retval,U] = is_stabi(a {, b ,tol})");
  39.   elseif(is_struct(a))
  40.     # sustem passed.
  41.     if(nargin == 2)
  42.       tol = b;          % get tolerance
  43.     elseif(nargin > 2)
  44.       usage("[retval,U] = is_stabi(sys{,tol})");
  45.     endif
  46.     [a,b] = sys2ss(sys);
  47.   else
  48.     # a,b arguments sent directly.
  49.     if(nargin > 3)
  50.       usage("[retval,U] = is_stabi(a {, b ,tol})");
  51.     endif
  52.   endif
  53.  
  54.   if(exist("tol"))
  55.     [retval,U] = is_contr(a,b,tol);
  56.   else
  57.     [retval,U] = is_contr(a,b);
  58.     tol = 1e2*rows(b)*eps;
  59.   endif
  60.   
  61.   if( !retval & columns(U) > 0)
  62.     # now use an ordered Schur decomposition to get an orthogonal
  63.     # basis of the unstable subspace...
  64.     n = rows(a);
  65.     [ua,s] = schur(-(a+eye(n)*tol),'A');
  66.     k = sum( real(eig(a)) >= 0 );    # count unstable poles 
  67.  
  68.     if( k > 0 )
  69.       ua = ua(:,1:k);
  70.       # now see if span(ua) is contained in span(U)
  71.       retval = (norm(ua - U*U'*ua) < tol);
  72.     else
  73.       retval = 1;            # all poles stable
  74.     endif
  75.   endif
  76.  
  77. endfunction
  78.