home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-src.tgz / tar.out / fsf / octave / scripts / linear-algebra / qzhess.m < prev    next >
Text File  |  1996-09-28  |  2KB  |  79 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 [aa, bb, q, z] = qzhess (a, b)
  16.  
  17. # Usage: [aa, bb, q, z] = qzhess (a, b)
  18. #
  19. # Compute the qz decomposition of the matrix pencil (a - lambda b)
  20. #
  21. # result: (for Matlab compatibility):
  22. #
  23. #   aa = q*a*z and bb = q*b*z, with q, z orthogonal, and
  24. #   v = matrix of generalized eigenvectors.
  25. #
  26. # This ought to be done in a compiled program
  27. #
  28. # Algorithm taken from Golub and Van Loan, Matrix Computations, 2nd ed.
  29.  
  30. # Written by A. S. Hodel (scotte@eng.auburn.edu) August 1993.
  31.  
  32.   if (nargin != 2)
  33.     error ("usage: [aa, bb, q, z] = qzhess (a, b)");
  34.   endif
  35.  
  36.   [na, ma] = size (a);
  37.   [nb, mb] = size (b);
  38.   if (na != ma || na != nb || nb != mb)
  39.     error ("qzhess: incompatible dimensions");
  40.   endif
  41.  
  42. # Reduce to hessenberg-triangular form.
  43.  
  44.   [q, bb] = qr (b);
  45.   aa = q' * a;
  46.   q = q';
  47.   z = eye (na);
  48.   for j = 1:(na-2)
  49.     for i = na:-1:(j+2)
  50.  
  51. # disp (["zero out aa(", num2str(i), ",", num2str(j), ")"])
  52.  
  53.       rot = givens (aa (i-1, j), aa (i, j));
  54.       aa ((i-1):i, :) = rot *aa ((i-1):i, :);
  55.       bb ((i-1):i, :) = rot *bb ((i-1):i, :);
  56.       q  ((i-1):i, :) = rot *q  ((i-1):i, :);
  57.  
  58. # disp (["now zero out bb(", num2str(i), ",", num2str(i-1), ")"])
  59.  
  60.       rot = givens (bb (i, i), bb (i, i-1))';
  61.       bb (:, (i-1):i) = bb (:, (i-1):i) * rot';
  62.       aa (:, (i-1):i) = aa (:, (i-1):i) * rot';
  63.       z  (:, (i-1):i) = z  (:, (i-1):i) * rot';
  64.  
  65.     endfor
  66.   endfor
  67.  
  68.   bb (2, 1) = 0.0;
  69.   for i = 3:na
  70.     bb (i, 1:(i-1)) = zeros (1, i-1);
  71.     aa (i, 1:(i-2)) = zeros (1, i-2);
  72.   endfor
  73.  
  74. endfunction
  75.