Mercurial > hg > octave-nkf
annotate scripts/signal/arma_rnd.m @ 20511:eca5aa3225f4
imshow.m: Add support for 'parent' property (bug #45473).
* imshow.m: Add cell variable prop_val_args{:} when calling image or imagesc.
Populate prop_val_args with {"parent", hparent} when "parent" argument given
to imshow. Remove code commented out in 2015/05/1 which has not caused any
problems. Add warning that arguments "border" and "reduce" are not supported.
author | Rik <rik@octave.org> |
---|---|
date | Sun, 05 Jul 2015 13:55:56 -0700 |
parents | aa36fb998a4d |
children |
rev | line source |
---|---|
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17744
diff
changeset
|
1 ## Copyright (C) 1995-2015 Friedrich Leisch |
3426 | 2 ## |
3922 | 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 | |
7016 | 7 ## the Free Software Foundation; either version 3 of the License, or (at |
8 ## your option) any later version. | |
3426 | 9 ## |
3922 | 10 ## Octave is distributed in the hope that it will be useful, but |
3191 | 11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
3426 | 13 ## General Public License for more details. |
14 ## | |
3191 | 15 ## You should have received a copy of the GNU General Public License |
7016 | 16 ## along with Octave; see the file COPYING. If not, see |
17 ## <http://www.gnu.org/licenses/>. | |
3191 | 18 |
3449 | 19 ## -*- texinfo -*- |
20 ## @deftypefn {Function File} {} arma_rnd (@var{a}, @var{b}, @var{v}, @var{t}, @var{n}) | |
20375
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
21 ## Return a simulation of the ARMA model. |
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
22 ## |
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
23 ## The ARMA model is defined by |
3449 | 24 ## |
25 ## @example | |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
26 ## @group |
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
27 ## x(n) = a(1) * x(n-1) + @dots{} + a(k) * x(n-k) |
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
28 ## + e(n) + b(1) * e(n-1) + @dots{} + b(l) * e(n-l) |
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
8920
diff
changeset
|
29 ## @end group |
3449 | 30 ## @end example |
3191 | 31 ## |
3449 | 32 ## @noindent |
20375
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
33 ## in which @var{k} is the length of vector @var{a}, @var{l} is the length of |
20391
aa36fb998a4d
maint: Remove unnecessary whitespace at end of lines.
Rik <rik@octave.org>
parents:
20375
diff
changeset
|
34 ## vector @var{b} and @var{e} is Gaussian white noise with variance @var{v}. |
20375
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
35 ## The function returns a vector of length @var{t}. |
3191 | 36 ## |
20375
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
37 ## The optional parameter @var{n} gives the number of dummy @var{x}(@var{i}) |
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
38 ## used for initialization, i.e., a sequence of length @var{t}+@var{n} is |
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
39 ## generated and @var{x}(@var{n}+1:@var{t}+@var{n}) is returned. If @var{n} |
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20038
diff
changeset
|
40 ## is omitted, @var{n} = 100 is used. |
3449 | 41 ## @end deftypefn |
3426 | 42 |
3457 | 43 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
44 ## Description: Simulate an ARMA process | |
3191 | 45 |
46 function x = arma_rnd (a, b, v, t, n) | |
47 | |
5568 | 48 if (nargin == 4) |
49 n = 100; | |
50 elseif (nargin == 5) | |
20038
9fc020886ae9
maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents:
19898
diff
changeset
|
51 if (! isscalar (n)) |
11472
1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
Rik <octave@nomad.inbox5.com>
parents:
10483
diff
changeset
|
52 error ("arma_rnd: N must be a scalar"); |
3191 | 53 endif |
5568 | 54 else |
6046 | 55 print_usage (); |
5568 | 56 endif |
3191 | 57 |
5568 | 58 if ((min (size (a)) > 1) || (min (size (b)) > 1)) |
11472
1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
Rik <octave@nomad.inbox5.com>
parents:
10483
diff
changeset
|
59 error ("arma_rnd: A and B must not be matrices"); |
5568 | 60 endif |
3426 | 61 |
20038
9fc020886ae9
maint: Clean up m-files to follow Octave coding conventions.
Rik <rik@octave.org>
parents:
19898
diff
changeset
|
62 if (! isscalar (t)) |
11472
1740012184f9
Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
Rik <octave@nomad.inbox5.com>
parents:
10483
diff
changeset
|
63 error ("arma_rnd: T must be a scalar"); |
5568 | 64 endif |
3426 | 65 |
5568 | 66 ar = length (a); |
67 br = length (b); | |
3426 | 68 |
5568 | 69 a = reshape (a, ar, 1); |
70 b = reshape (b, br, 1); | |
3426 | 71 |
8506 | 72 ## Apply our notational convention. |
73 a = [1; -a]; | |
5568 | 74 b = [1; b]; |
75 | |
76 n = min (n, ar + br); | |
3191 | 77 |
5568 | 78 e = sqrt (v) * randn (t + n, 1); |
79 | |
80 x = filter (b, a, e); | |
81 x = x(n + 1 : t + n); | |
3191 | 82 |
83 endfunction | |
17338
1c89599167a6
maint: End m-files with 1 blank line.
Rik <rik@octave.org>
parents:
14138
diff
changeset
|
84 |