3421
|
1 ## Copyright (C) 1998 Auburn University. All rights reserved. |
|
2 ## |
3426
|
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. |
3421
|
9 ## |
3426
|
10 ## Octave is distributed in the hope that it will be useful, but WITHOUT |
|
11 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 ## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
3421
|
13 ## for more details. |
3426
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301 USA. |
3421
|
19 |
|
20 ## -*- texinfo -*- |
3502
|
21 ## @deftypefn {Function File} {} qzval (@var{a}, @var{b}) |
3426
|
22 ## Compute generalized eigenvalues of the matrix pencil |
3421
|
23 ## @ifinfo |
|
24 ## @example |
|
25 ## (A - lambda B). |
|
26 ## @end example |
|
27 ## @end ifinfo |
|
28 ## @iftex |
|
29 ## @tex |
|
30 ## $(A - \lambda B)$. |
|
31 ## @end tex |
|
32 ## @end iftex |
3426
|
33 ## |
3502
|
34 ## @var{a} and @var{b} must be real matrices. |
3426
|
35 ## |
4946
|
36 ## @code{qzval} is obsolete; use @code{qz} instead. |
3421
|
37 ## @end deftypefn |
3426
|
38 |
3421
|
39 ## Author: A. S. Hodel <a.s.hodel@eng.auburn.edu> |
|
40 ## Created: July 1998 |
|
41 |
|
42 function lam = qzval (A, B) |
|
43 |
|
44 warning("qzval is obsolete; calling qz instead") |
|
45 lam = qz(A,B); |
|
46 |
|
47 endfunction |