~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to scripts/signal/hanning.m

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2005, 2006, 2007
 
2
##               Andreas Weingessel
 
3
##
 
4
## This file is part of Octave.
 
5
##
 
6
## Octave is free software; you can redistribute it and/or modify it
 
7
## under the terms of the GNU General Public License as published by
 
8
## the Free Software Foundation; either version 3 of the License, or (at
 
9
## your option) any later version.
 
10
##
 
11
## Octave is distributed in the hope that it will be useful, but
 
12
## WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
## General Public License for more details.
 
15
##
 
16
## You should have received a copy of the GNU General Public License
 
17
## along with Octave; see the file COPYING.  If not, see
 
18
## <http://www.gnu.org/licenses/>.
 
19
 
 
20
## -*- texinfo -*-
 
21
## @deftypefn {Function File} {} hanning (@var{m})
 
22
## Return the filter coefficients of a Hanning window of length @var{m}.
 
23
##
 
24
## For a definition of this window type, see e.g. A. V. Oppenheim &
 
25
## R. W. Schafer, "Discrete-Time Signal Processing".
 
26
## @end deftypefn
 
27
 
 
28
## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at>
 
29
## Description: Coefficients of the Hanning window
 
30
 
 
31
function c = hanning (m)
 
32
 
 
33
  if (nargin != 1)
 
34
    print_usage ();
 
35
  endif
 
36
 
 
37
  if (! (isscalar (m) && (m == round (m)) && (m > 0)))
 
38
    error ("hanning: m has to be an integer > 0");
 
39
  endif
 
40
 
 
41
  if (m == 1)
 
42
    c = 1;
 
43
  else
 
44
    m = m - 1;
 
45
    c = 0.5 - 0.5 * cos (2 * pi * (0 : m)' / m);
 
46
  endif
 
47
 
 
48
endfunction