3191
|
1 ## Copyright (C) 1995, 1996, 1997 Andreas Weingessel |
|
2 ## |
|
3 ## This program is free software; you can redistribute it and/or modify |
|
4 ## it under the terms of the GNU General Public License as published by |
|
5 ## the Free Software Foundation; either version 2, or (at your option) |
|
6 ## any later version. |
|
7 ## |
|
8 ## This program is distributed in the hope that it will be useful, but |
|
9 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
11 ## General Public License for more details. |
|
12 ## |
|
13 ## You should have received a copy of the GNU General Public License |
|
14 ## along with this file. If not, write to the Free Software Foundation, |
|
15 ## 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
16 |
|
17 ## usage: blackman (m) |
|
18 ## |
|
19 ## Returns the filter coefficients of a Blackman window of length m. |
|
20 ## |
|
21 ## For a definition of the Blackman window, see e.g. A. V. Oppenheim & |
|
22 ## R. W. Schafer, "Discrete-Time Signal Processing". |
|
23 |
|
24 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at> |
|
25 ## Description: Coefficients of the Blackman window |
|
26 |
|
27 function c = blackman (m) |
|
28 |
|
29 if (nargin != 1) |
|
30 usage ("blackman (m)"); |
|
31 endif |
|
32 |
|
33 if !(is_scalar (m) && (m == round (m)) && (m > 0)) |
|
34 error ("blackman: m has to be an integer > 0"); |
|
35 endif |
|
36 |
|
37 if (m == 1) |
|
38 c = 1; |
|
39 else |
|
40 m = m - 1; |
|
41 k = (0 : m)' / m; |
|
42 c = 0.42 - 0.5 * cos (2 * pi * k) + 0.08 * cos (4 * pi * k); |
|
43 endif |
|
44 |
|
45 endfunction |