Mercurial > hg > octave-nkf
annotate scripts/signal/hamming.m @ 20815:a260a6acb70f
fix test failures introduced by a22d8a2eb0e5
* scripts/ode/private/integrate_adaptive.m: fix stepping backwards, fix
invocation of OutputFcn, fix text of some error messages
* scripts/ode/private/integrate_const.m: remove use of option OutputSave
* scripts/ode/private/integrate_n_steps.m: remove use of option OutputSave
author | Carlo de Falco <carlo.defalco@polimi.it> |
---|---|
date | Sun, 11 Oct 2015 23:09:01 +0200 |
parents | 83792dd9bcc1 |
children |
rev | line source |
---|---|
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
19232
diff
changeset
|
1 ## Copyright (C) 1995-2015 Andreas Weingessel |
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 -*- |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
20 ## @deftypefn {Function File} {} hamming (@var{m}) |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
21 ## @deftypefnx {Function File} {} hamming (@var{m}, "periodic") |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
22 ## @deftypefnx {Function File} {} hamming (@var{m}, "symmetric") |
3449 | 23 ## Return the filter coefficients of a Hamming window of length @var{m}. |
3191 | 24 ## |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
25 ## If the optional argument @qcode{"periodic"} is given, the periodic form |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
26 ## of the window is returned. This is equivalent to the window of length |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
27 ## @var{m}+1 with the last coefficient removed. The optional argument |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
28 ## @qcode{"symmetric"} is equivalent to not specifying a second argument. |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
29 ## |
20375
f1d0f506ee78
doc: Update more docstrings to have one sentence summary as first line.
Rik <rik@octave.org>
parents:
20236
diff
changeset
|
30 ## For a definition of the Hamming window see, e.g., |
19232
0850b5212619
doc: Add @nospell macro around proper names in documentation.
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
31 ## @nospell{A.V. Oppenheim & R. W. Schafer}, |
0850b5212619
doc: Add @nospell macro around proper names in documentation.
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
32 ## @cite{Discrete-Time Signal Processing}. |
3449 | 33 ## @end deftypefn |
3191 | 34 |
3457 | 35 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at> |
36 ## Description: Coefficients of the Hamming window | |
3191 | 37 |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
38 function c = hamming (m, opt) |
3426 | 39 |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
40 if (nargin < 1 || nargin > 2) |
6046 | 41 print_usage (); |
3191 | 42 endif |
3426 | 43 |
13279
984359717d71
Use common code idiom for checking whether a double value is an integer.
Rik <octave@nomad.inbox5.com>
parents:
13059
diff
changeset
|
44 if (! (isscalar (m) && (m == fix (m)) && (m > 0))) |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
45 error ("hamming: M must be a positive integer"); |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
46 endif |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
47 |
20236
230c1e2a678d
blackman, hamming, hanning: Simplify handling of periodic window option
Mike Miller <mtmiller@octave.org>
parents:
20235
diff
changeset
|
48 N = m - 1; |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
49 if (nargin == 2) |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
50 switch (opt) |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
51 case "periodic" |
20236
230c1e2a678d
blackman, hamming, hanning: Simplify handling of periodic window option
Mike Miller <mtmiller@octave.org>
parents:
20235
diff
changeset
|
52 N = m; |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
53 case "symmetric" |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
54 ## Default option, same as no option specified. |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
55 otherwise |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
56 error ('hamming: window type must be either "periodic" or "symmetric"'); |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
57 endswitch |
3191 | 58 endif |
3426 | 59 |
3191 | 60 if (m == 1) |
61 c = 1; | |
62 else | |
20441
83792dd9bcc1
Use in-place operators in m-files where possible.
Rik <rik@octave.org>
parents:
20375
diff
changeset
|
63 m -= 1; |
20236
230c1e2a678d
blackman, hamming, hanning: Simplify handling of periodic window option
Mike Miller <mtmiller@octave.org>
parents:
20235
diff
changeset
|
64 c = 0.54 - 0.46 * cos (2 * pi * (0 : m)' / N); |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
65 endif |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
66 |
3191 | 67 endfunction |
13059
107651f79e06
codesprint: 9 tests for hamming.m
Andriy Shinkarchuck <adriano32.gnu@gmail.com>
parents:
11523
diff
changeset
|
68 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
69 |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
70 %!assert (hamming (1), 1) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
71 %!assert (hamming (2), (0.54 - 0.46)*ones (2,1)) |
20235
d209fbae38ae
Fix tests for bartlett, blackman, hamming, and hanning
Mike Miller <mtmiller@octave.org>
parents:
20031
diff
changeset
|
72 %!assert (hamming (15), flip (hamming (15)), 5*eps) |
d209fbae38ae
Fix tests for bartlett, blackman, hamming, and hanning
Mike Miller <mtmiller@octave.org>
parents:
20031
diff
changeset
|
73 %!assert (hamming (16), flip (hamming (16)), 5*eps) |
13059
107651f79e06
codesprint: 9 tests for hamming.m
Andriy Shinkarchuck <adriano32.gnu@gmail.com>
parents:
11523
diff
changeset
|
74 %!test |
107651f79e06
codesprint: 9 tests for hamming.m
Andriy Shinkarchuck <adriano32.gnu@gmail.com>
parents:
11523
diff
changeset
|
75 %! N = 15; |
107651f79e06
codesprint: 9 tests for hamming.m
Andriy Shinkarchuck <adriano32.gnu@gmail.com>
parents:
11523
diff
changeset
|
76 %! A = hamming (N); |
20235
d209fbae38ae
Fix tests for bartlett, blackman, hamming, and hanning
Mike Miller <mtmiller@octave.org>
parents:
20031
diff
changeset
|
77 %! assert (A(ceil (N/2)), 1); |
13059
107651f79e06
codesprint: 9 tests for hamming.m
Andriy Shinkarchuck <adriano32.gnu@gmail.com>
parents:
11523
diff
changeset
|
78 |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
79 %!assert (hamming (15), hamming (15, "symmetric")); |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
80 %!assert (hamming (16)(1:15), hamming (15, "periodic")); |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
81 %!test |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
82 %! N = 16; |
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
83 %! A = hamming (N, "periodic"); |
20235
d209fbae38ae
Fix tests for bartlett, blackman, hamming, and hanning
Mike Miller <mtmiller@octave.org>
parents:
20031
diff
changeset
|
84 %! assert (A(N/2 + 1), 1); |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
85 |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
86 %!error hamming () |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
87 %!error hamming (0.5) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
88 %!error hamming (-1) |
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
89 %!error hamming (ones (1,4)) |
20031
26fb4bfa4193
blackman, hamming, hanning: Add periodic window option (bug #43305)
Mike Miller <mtmiller@ieee.org>
parents:
19898
diff
changeset
|
90 %!error hamming (1, "invalid"); |
14363
f3d52523cde1
Use Octave coding conventions in all m-file %!test blocks
Rik <octave@nomad.inbox5.com>
parents:
14138
diff
changeset
|
91 |