annotate scripts/linear-algebra/qzhess.m @ 19630:0e1f5a750d00

maint: Periodic merge of gui-release to default.
author John W. Eaton <jwe@octave.org>
date Tue, 20 Jan 2015 10:24:46 -0500
parents 0850b5212619 446c46af4b42
children 4197fc428c7d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17744
d63878346099 maint: Update copyright notices for release.
John W. Eaton <jwe@octave.org>
parents: 16920
diff changeset
1 ## Copyright (C) 1993-2013 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}
10821
693e22af08ae Grammarcheck documentation of m-files
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
25 ## orthogonal. For example:
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3372
diff changeset
26 ##
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
27 ## @example
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
28 ## @group
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
29 ## [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
30 ## @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
31 ## @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
32 ## @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
33 ## @result{} z = [ 1, 0; 0, 1 ]
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
34 ## @end group
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
35 ## @end example
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3372
diff changeset
36 ##
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
37 ## The Hessenberg-triangular decomposition is the first step in
19074
0850b5212619 doc: Add @nospell macro around proper names in documentation.
Rik <rik@octave.org>
parents: 17744
diff changeset
38 ## @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
39 ##
19074
0850b5212619 doc: Add @nospell macro around proper names in documentation.
Rik <rik@octave.org>
parents: 17744
diff changeset
40 ## 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
41 ## @cite{Matrix Computations, 2nd edition}.
19627
446c46af4b42 strip trailing whitespace from most source files
John W. Eaton <jwe@octave.org>
parents: 17744
diff changeset
42 ##
16920
53eaa83e4181 doc: Add seealso links between various factorization forms.
Rik <rik@octave.org>
parents: 14363
diff changeset
43 ## @seealso{lu, chol, hess, qr, qz, schur, svd}
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
44 ## @end deftypefn
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
45
2312
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
46 ## Author: A. S. Hodel <scotte@eng.auburn.edu>
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
47 ## Created: August 1993
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
48 ## Adapted-By: jwe
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
49
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
50 function [aa, bb, q, z] = qzhess (A, B)
72
2d480148756b [project @ 1993-08-30 14:44:35 by jwe]
jwe
parents: 54
diff changeset
51
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
52 if (nargin != 2)
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5307
diff changeset
53 print_usage ();
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
54 endif
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
55
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
56 [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
57 [nb, mb] = size (B);
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
58 if (na != ma || na != nb || nb != mb)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
59 error ("qzhess: incompatible dimensions");
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
60 endif
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
61
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
62 ## Reduce to hessenberg-triangular form.
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
63
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
64 [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
65 aa = q' * A;
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
66 q = q';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
67 z = eye (na);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
68 for j = 1:(na-2)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
69 for i = na:-1:(j+2)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
70
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
71 ## disp (["zero out aa(", num2str(i), ",", num2str(j), ")"])
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
72
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
73 rot = givens (aa (i-1, j), aa (i, j));
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
74 aa ((i-1):i, :) = rot *aa ((i-1):i, :);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
75 bb ((i-1):i, :) = rot *bb ((i-1):i, :);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
76 q ((i-1):i, :) = rot *q ((i-1):i, :);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
77
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
78 ## 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
79
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
80 rot = givens (bb (i, i), bb (i, i-1))';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
81 bb (:, (i-1):i) = bb (:, (i-1):i) * rot';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
82 aa (:, (i-1):i) = aa (:, (i-1):i) * rot';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
83 z (:, (i-1):i) = z (:, (i-1):i) * rot';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
84
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
85 endfor
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
86 endfor
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
87
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
88 bb (2, 1) = 0.0;
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
89 for i = 3:na
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
90 bb (i, 1:(i-1)) = zeros (1, i-1);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
91 aa (i, 1:(i-2)) = zeros (1, i-2);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
92 endfor
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
93
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
94 endfunction
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
95
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
96
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
97 %!test
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
98 %! a = [1 2 1 3;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
99 %! 2 5 3 2;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
100 %! 5 5 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
101 %! 4 0 3 2];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
102 %! b = [0 4 2 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
103 %! 2 3 1 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
104 %! 1 0 2 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
105 %! 2 5 3 2];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
106 %! mask = [0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
107 %! 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
108 %! 1 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
109 %! 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
110 %! [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
111 %! 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
112 %! 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
113 %! 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
114 %! 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
115 %! 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
116 %! 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
117
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
118 %!test
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
119 %! 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
120 %! 3 2 3 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
121 %! 4 3 2 1 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
122 %! 0 1 0 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
123 %! 3 2 1 0 5];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
124 %! 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
125 %! 1 1 1 2 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
126 %! 0 3 2 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
127 %! 4 3 0 3 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
128 %! 2 1 2 1 3];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
129 %! 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
130 %! 0 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
131 %! 1 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
132 %! 1 1 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
133 %! 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
134 %! [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
135 %! 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
136 %! 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
137 %! 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
138 %! 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
139 %! 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
140 %! 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
141
14363
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
142 %!error qzhess ([0])
f3d52523cde1 Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents: 14327
diff changeset
143 %!error qzhess ()
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
144