annotate scripts/linear-algebra/qzhess.m @ 14138:72c96de7a403 stable

maint: update copyright notices for 2012
author John W. Eaton <jwe@octave.org>
date Mon, 02 Jan 2012 14:25:41 -0500
parents c5c94b63931f
children 4d917a6a858b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14138
72c96de7a403 maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents: 13048
diff changeset
1 ## Copyright (C) 1993-2012 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
11593
1577c6f80926 Use non-breaking spaces between certain adjectives and their nouns in docstrings.
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
38 ## 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 ##
3372
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
40 ## Algorithm taken from Golub and Van Loan, @cite{Matrix Computations, 2nd
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
41 ## edition}.
f16c2ce14886 [project @ 1999-11-23 19:07:09 by jwe]
jwe
parents: 2847
diff changeset
42 ## @end deftypefn
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
43
2312
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
44 ## Author: A. S. Hodel <scotte@eng.auburn.edu>
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
45 ## Created: August 1993
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
46 ## Adapted-By: jwe
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
47
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
48 function [aa, bb, q, z] = qzhess (A, B)
72
2d480148756b [project @ 1993-08-30 14:44:35 by jwe]
jwe
parents: 54
diff changeset
49
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
50 if (nargin != 2)
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5307
diff changeset
51 print_usage ();
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
52 endif
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
53
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
54 [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
55 [nb, mb] = size (B);
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
56 if (na != ma || na != nb || nb != mb)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
57 error ("qzhess: incompatible dimensions");
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
58 endif
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
59
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
60 ## Reduce to hessenberg-triangular form.
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
61
11471
994e2a93a8e2 Use uppercase 'A' to refer to matrix inputs in m-files.
Rik <octave@nomad.inbox5.com>
parents: 10821
diff changeset
62 [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
63 aa = q' * A;
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
64 q = q';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
65 z = eye (na);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
66 for j = 1:(na-2)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
67 for i = na:-1:(j+2)
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
68
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
69 ## disp (["zero out aa(", num2str(i), ",", num2str(j), ")"])
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
70
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
71 rot = givens (aa (i-1, j), aa (i, j));
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
72 aa ((i-1):i, :) = rot *aa ((i-1):i, :);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
73 bb ((i-1):i, :) = rot *bb ((i-1):i, :);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
74 q ((i-1):i, :) = rot *q ((i-1):i, :);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
75
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
76 ## 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
77
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
78 rot = givens (bb (i, i), bb (i, i-1))';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
79 bb (:, (i-1):i) = bb (:, (i-1):i) * rot';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
80 aa (:, (i-1):i) = aa (:, (i-1):i) * rot';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
81 z (:, (i-1):i) = z (:, (i-1):i) * rot';
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
82
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
83 endfor
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
84 endfor
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
85
54
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
86 bb (2, 1) = 0.0;
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
87 for i = 3:na
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
88 bb (i, 1:(i-1)) = zeros (1, i-1);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
89 aa (i, 1:(i-2)) = zeros (1, i-2);
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
90 endfor
98eb51c870b2 [project @ 1993-08-11 21:29:50 by jwe]
jwe
parents: 29
diff changeset
91
29
69497d3b3b75 [project @ 1993-08-10 21:42:45 by jwe]
jwe
parents:
diff changeset
92 endfunction
13048
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
93
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
94 %!test
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
95 %! a = [1 2 1 3;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
96 %! 2 5 3 2;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
97 %! 5 5 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
98 %! 4 0 3 2];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
99 %! b = [0 4 2 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
100 %! 2 3 1 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
101 %! 1 0 2 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
102 %! 2 5 3 2];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
103 %! mask = [0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
104 %! 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
105 %! 1 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
106 %! 1 1 0 0];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
107 %! [aa, bb, q, z] = qzhess(a, b);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
108 %! assert(inv(q) - q', zeros(4), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
109 %! assert(inv(z) - z', zeros(4), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
110 %! assert(q * a * z, aa, 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
111 %! assert(aa .* mask, zeros(4), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
112 %! assert(q * b * z, bb, 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
113 %! assert(bb .* mask, zeros(4), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
114
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
115 %!test
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
116 %! 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
117 %! 3 2 3 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
118 %! 4 3 2 1 1;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
119 %! 0 1 0 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
120 %! 3 2 1 0 5];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
121 %! 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
122 %! 1 1 1 2 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
123 %! 0 3 2 1 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
124 %! 4 3 0 3 5;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
125 %! 2 1 2 1 3];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
126 %! 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
127 %! 0 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
128 %! 1 0 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
129 %! 1 1 0 0 0;
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
130 %! 1 1 1 0 0];
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
131 %! [aa, bb, q, z] = qzhess(a, b);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
132 %! assert(inv(q) - q', zeros(5), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
133 %! assert(inv(z) - z', zeros(5), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
134 %! assert(q * a * z, aa, 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
135 %! assert(aa .* mask, zeros(5), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
136 %! assert(q * b * z, bb, 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
137 %! assert(bb .* mask, zeros(5), 2e-8);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
138
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
139 %!error qzhess([0]);
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
140 %!error qzhess();
c5c94b63931f codesprint: linear algebra tests: cross, housh, planerot, qzhess, rref
Roman Belov <romblv@gmail.com>
parents: 11593
diff changeset
141