annotate scripts/linear-algebra/expm.m @ 8664:e07e93c04080

style fixes
author John W. Eaton <jwe@octave.org>
date Wed, 04 Feb 2009 10:56:23 -0500
parents 81d6ab3ac93c
children 79576d40acb6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
1 ## Copyright (C) 2008 Jaroslav Hajek, Marco Caliari
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
2 ##
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
3 ## This file is part of Octave.
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
4 ##
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
6 ## under the terms of the GNU General Public License as published by
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
8 ## your option) any later version.
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
9 ##
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
13 ## General Public License for more details.
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
14 ##
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
15 ## You should have received a copy of the GNU General Public License
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
17 ## <http://www.gnu.org/licenses/>.
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
18
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
19 ##-*- texinfo -*-
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
20 ## @deftypefn {Function File} {} expm (@var{a})
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
21 ## Return the exponential of a matrix, defined as the infinite Taylor
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
22 ## series
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
23 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
24 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
25 ## $$
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
26 ## \exp (A) = I + A + {A^2 \over 2!} + {A^3 \over 3!} + \cdots
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
27 ## $$
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
28 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
29 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
30 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
31 ##
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
32 ## @example
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
33 ## expm(a) = I + a + a^2/2! + a^3/3! + ...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
34 ## @end example
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
35 ##
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
36 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
37 ## The Taylor series is @emph{not} the way to compute the matrix
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
38 ## exponential; see Moler and Van Loan, @cite{Nineteen Dubious Ways to
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
39 ## Compute the Exponential of a Matrix}, SIAM Review, 1978. This routine
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
40 ## uses Ward's diagonal
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
41 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
42 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
43 ## Pad\'e
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
44 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
45 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
46 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
47 ## Pade'
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
48 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
49 ## approximation method with three step preconditioning (SIAM Journal on
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
50 ## Numerical Analysis, 1977). Diagonal
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
51 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
52 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
53 ## Pad\'e
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
54 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
55 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
56 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
57 ## Pade'
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
58 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
59 ## approximations are rational polynomials of matrices
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
60 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
61 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
62 ## $D_q(a)^{-1}N_q(a)$
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
63 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
64 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
65 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
66 ##
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
67 ## @example
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
68 ## -1
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
69 ## D (a) N (a)
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
70 ## @end example
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
71 ##
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
72 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
73 ## whose Taylor series matches the first
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
74 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
75 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
76 ## $2 q + 1 $
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
77 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
78 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
79 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
80 ## @code{2q+1}
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
81 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
82 ## terms of the Taylor series above; direct evaluation of the Taylor series
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
83 ## (with the same preconditioning steps) may be desirable in lieu of the
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
84 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
85 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
86 ## Pad\'e
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
87 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
88 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
89 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
90 ## Pade'
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
91 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
92 ## approximation when
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
93 ## @iftex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
94 ## @tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
95 ## $D_q(a)$
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
96 ## @end tex
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
97 ## @end iftex
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
98 ## @ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
99 ## @code{Dq(a)}
8517
81d6ab3ac93c Allow documentation tobe built for other formats than tex and info
sh@sh-laptop
parents: 8506
diff changeset
100 ## @end ifnottex
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
101 ## is ill-conditioned.
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
102 ## @end deftypefn
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
103
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
104 function r = expm (a)
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
105
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
106 if (! ismatrix (a) || ! issquare (a))
8664
e07e93c04080 style fixes
John W. Eaton <jwe@octave.org>
parents: 8517
diff changeset
107 error ("expm requires a square matrix");
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
108 endif
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
109
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
110 n = rows (a);
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
111 ## Trace reduction.
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
112 a(a == -Inf) = -realmax;
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
113 trshift = trace (a) / length (a);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
114 if (trshift > 0)
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
115 a -= trshift*eye (n);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
116 endif
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
117 ## Balancing.
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
118 [p, d, aa] = balance (a);
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
119 ## FIXME: can we both permute and scale at once? Or should we rather do
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
120 ## this:
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
121 ##
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
122 ## [p, xx, aa] = balance (a, "noscal");
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
123 ## [xx, d, aa] = balance (aa, "noperm");
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
124 [f, e] = log2 (norm (aa, "inf"));
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
125 s = max (0, e);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
126 s = min (s, 1023);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
127 aa *= 2^(-s);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
128
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
129 ## Pade approximation for exp(A).
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
130 c = [5.0000000000000000e-1,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
131 1.1666666666666667e-1,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
132 1.6666666666666667e-2,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
133 1.6025641025641026e-3,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
134 1.0683760683760684e-4,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
135 4.8562548562548563e-6,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
136 1.3875013875013875e-7,...
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
137 1.9270852604185938e-9];
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
138
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
139 a2 = aa^2;
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
140 id = eye (n);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
141 x = (((c(8) * a2 + c(6) * id) * a2 + c(4) * id) * a2 + c(2) * id) * a2 + id;
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
142 y = (((c(7) * a2 + c(5) * id) * a2 + c(3) * id) * a2 + c(1) * id) * aa;
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
143
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
144 r = (x - y) \ (x + y);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
145
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
146 ## Undo scaling by repeated squaring.
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
147 for k = 1:s
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
148 r ^= 2;
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
149 endfor
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
150
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
151 ## inverse balancing.
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
152 ds = diag (s);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
153 r = ds * r / ds;
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
154 r = r(p, p);
8506
bc982528de11 comment style fixes
John W. Eaton <jwe@octave.org>
parents: 8393
diff changeset
155 ## Inverse trace reduction.
8393
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
156 if (trshift >0)
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
157 r *= exp (trshift);
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
158 endif
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
159
c8a785d0e867 add omitted m-file
Jaroslav Hajek <highegg@gmail.com>
parents:
diff changeset
160 endfunction