annotate scripts/linear-algebra/qzhess.m @ 20160:03b9d17a2d95 stable

doc: Update more docstrings to have one sentence summary as first line. Reviewed io, java, linear-algebra, prefs, and set script directories. * scripts/io/beep.m, scripts/io/dlmwrite.m, scripts/io/importdata.m, scripts/io/strread.m, scripts/io/textread.m, scripts/java/javaArray.m, scripts/java/java_get.m, scripts/java/java_set.m, scripts/java/javaaddpath.m, scripts/java/javachk.m, scripts/java/javaclasspath.m, scripts/java/javamem.m, scripts/java/javarmpath.m, scripts/linear-algebra/bandwidth.m, scripts/linear-algebra/commutation_matrix.m, scripts/linear-algebra/cond.m, scripts/linear-algebra/condest.m, scripts/linear-algebra/cross.m, scripts/linear-algebra/duplication_matrix.m, scripts/linear-algebra/expm.m, scripts/linear-algebra/housh.m, scripts/linear-algebra/isdefinite.m, scripts/linear-algebra/ishermitian.m, scripts/linear-algebra/issymmetric.m, scripts/linear-algebra/istril.m, scripts/linear-algebra/istriu.m, scripts/linear-algebra/krylov.m, scripts/linear-algebra/logm.m, scripts/linear-algebra/normest.m, scripts/linear-algebra/null.m, scripts/linear-algebra/onenormest.m, scripts/linear-algebra/orth.m, scripts/linear-algebra/qzhess.m, scripts/linear-algebra/rank.m, scripts/linear-algebra/rref.m, scripts/linear-algebra/vech.m, scripts/path/matlabroot.m, scripts/prefs/addpref.m, scripts/prefs/getpref.m, scripts/prefs/ispref.m, scripts/prefs/rmpref.m, scripts/prefs/setpref.m, scripts/set/powerset.m, scripts/set/setdiff.m: Update more docstrings to have one sentence summary as first line.
author Rik <rik@octave.org>
date Sun, 03 May 2015 15:36:23 -0700
parents 9fc020886ae9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19697
4197fc428c7d maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents: 19596
diff changeset
1 ## Copyright (C) 1993-2015 John W. Eaton
2313
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
2 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
3 ## This file is part of Octave.
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
4 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
8 ## your option) any later version.
2313
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
9 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
13 ## General Public License for more details.
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
14 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
17 ## <http://www.gnu.org/licenses/>.
245
16a24e76d6e0 [project @ 1993-12-03 02:00:15 by jwe]
jwe
parents: 72
diff changeset
18
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
19 ## -*- texinfo -*-
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
20 ## @deftypefn {Function File} {[@var{aa}, @var{bb}, @var{q}, @var{z}] =} qzhess (@var{A}, @var{B})
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
21 ## Compute the Hessenberg-triangular decomposition of the matrix pencil
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
22 ## @code{(@var{A}, @var{B})}, returning
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
23 ## @code{@var{aa} = @var{q} * @var{A} * @var{z}},
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
24 ## @code{@var{bb} = @var{q} * @var{B} * @var{z}}, with @var{q} and @var{z}
20160
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
25 ## orthogonal.
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
26 ##
03b9d17a2d95 doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents: 19833
diff changeset
27 ## For example:
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3372
diff changeset
28 ##
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
29 ## @example
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
30 ## @group
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
31 ## [aa, bb, q, z] = qzhess ([1, 2; 3, 4], [5, 6; 7, 8])
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
32 ## @result{} aa = [ -3.02244, -4.41741; 0.92998, 0.69749 ]
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
33 ## @result{} bb = [ -8.60233, -9.99730; 0.00000, -0.23250 ]
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
34 ## @result{} q = [ -0.58124, -0.81373; -0.81373, 0.58124 ]
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
35 ## @result{} z = [ 1, 0; 0, 1 ]
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
36 ## @end group
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
37 ## @end example
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3372
diff changeset
38 ##
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
39 ## The Hessenberg-triangular decomposition is the first step in
19040
0850b5212619 doc: Add @nospell macro around proper names in documentation.
Rik <rik@octave.org>
parents: 17744
diff changeset
40 ## @nospell{Moler and Stewart's} QZ@tie{}decomposition algorithm.
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3372
diff changeset
41 ##
19040
0850b5212619 doc: Add @nospell macro around proper names in documentation.
Rik <rik@octave.org>
parents: 17744
diff changeset
42 ## Algorithm taken from @nospell{Golub and Van Loan},
14327
4d917a6a858b doc: Use Octave coding conventions in @example blocks of docstrings.
Rik <octave@nomad.inbox5.com>
parents: 14138
diff changeset
43 ## @cite{Matrix Computations, 2nd edition}.
19593
446c46af4b42 strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents: 17744
diff changeset
44 ##
16920
53eaa83e4181 doc: Add seealso links between various factorization forms.
Rik <rik@octave.org>
parents: 14363
diff changeset
45 ## @seealso{lu, chol, hess, qr, qz, schur, svd}
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
46 ## @end deftypefn
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
47
2312
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
48 ## Author: A. S. Hodel <scotte@eng.auburn.edu>
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
49 ## Created: August 1993
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
50 ## Adapted-By: jwe
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
51
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
52 function [aa, bb, q, z] = qzhess (A, B)
72
2d480148756b [project @ 1993-08-30 14:44:35 by jwe]
jwe
parents: 54
diff changeset
53
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
54 if (nargin != 2)
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5307
diff changeset
55 print_usage ();
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
56 endif
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
57
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
58 [na, ma] = size (A);
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
59 [nb, mb] = size (B);
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
60 if (na != ma || na != nb || nb != mb)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
61 error ("qzhess: incompatible dimensions");
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
62 endif
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
63
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
64 ## Reduce to hessenberg-triangular form.
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
65
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
66 [q, bb] = qr (B);
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
67 aa = q' * A;
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
68 q = q';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
69 z = eye (na);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
70 for j = 1:(na-2)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
71 for i = na:-1:(j+2)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
72
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
73 ## disp (["zero out aa(", num2str(i), ",", num2str(j), ")"])
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
74
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
75 rot = givens (aa (i-1, j), aa (i, j));
19833
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
76 aa((i-1):i, :) = rot *aa((i-1):i, :);
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
77 bb((i-1):i, :) = rot *bb((i-1):i, :);
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
78 q((i-1):i, :) = rot * q((i-1):i, :);
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
79
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
80 ## disp (["now zero out bb(", num2str(i), ",", num2str(i-1), ")"])
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
81
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
82 rot = givens (bb (i, i), bb (i, i-1))';
19833
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
83 bb(:, (i-1):i) = bb(:, (i-1):i) * rot';
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
84 aa(:, (i-1):i) = aa(:, (i-1):i) * rot';
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
85 z(:, (i-1):i) = z(:, (i-1):i) * rot';
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
86
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
87 endfor
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
88 endfor
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
89
19833
9fc020886ae9 maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents: 19697
diff changeset
90 bb(2, 1) = 0.0;
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
91 for i = 3:na
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
92 bb (i, 1:(i-1)) = zeros (1, i-1);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
93 aa (i, 1:(i-2)) = zeros (1, i-2);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
94 endfor
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
95
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
96 endfunction
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
97
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
98
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
99 %!test
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
100 %! a = [1 2 1 3;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
101 %! 2 5 3 2;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
102 %! 5 5 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
103 %! 4 0 3 2];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
104 %! b = [0 4 2 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
105 %! 2 3 1 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
106 %! 1 0 2 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
107 %! 2 5 3 2];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
108 %! mask = [0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
109 %! 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
110 %! 1 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
111 %! 1 1 0 0];
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
112 %! [aa, bb, q, z] = qzhess (a, b);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
113 %! assert (inv (q) - q', zeros (4), 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
114 %! assert (inv (z) - z', zeros (4), 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
115 %! assert (q * a * z, aa, 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
116 %! assert (aa .* mask, zeros (4), 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
117 %! assert (q * b * z, bb, 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
118 %! assert (bb .* mask, zeros (4), 2e-8);
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
119
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
120 %!test
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
121 %! a = [1 2 3 4 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
122 %! 3 2 3 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
123 %! 4 3 2 1 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
124 %! 0 1 0 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
125 %! 3 2 1 0 5];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
126 %! b = [5 0 4 0 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
127 %! 1 1 1 2 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
128 %! 0 3 2 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
129 %! 4 3 0 3 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
130 %! 2 1 2 1 3];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
131 %! mask = [0 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
132 %! 0 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
133 %! 1 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
134 %! 1 1 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
135 %! 1 1 1 0 0];
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
136 %! [aa, bb, q, z] = qzhess (a, b);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
137 %! assert (inv (q) - q', zeros (5), 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
138 %! assert (inv (z) - z', zeros (5), 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
139 %! assert (q * a * z, aa, 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
140 %! assert (aa .* mask, zeros (5), 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
141 %! assert (q * b * z, bb, 2e-8);
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
142 %! assert (bb .* mask, zeros (5), 2e-8);
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
143
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
144 %!error qzhess ([0])
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
145 %!error qzhess ()
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
146