Mercurial > hg > octave-lyh
annotate scripts/signal/private/rectangle_lw.m @ 14611:f2ed09ae8d3f
doc: Produce .texi from .txi files using Perl rather than C++.
* munge-texi.pl: New Perl file to generate .texi files from .txi files.
* munge-texi.cc: Remove C++ file for generating .texi files.
* Makefile.am: Change build system to use munge-texi.pl
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Tue, 08 May 2012 21:03:42 -0700 |
parents | 72c96de7a403 |
children | 5bc9b9cb4362 |
rev | line source |
---|---|
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
12579
diff
changeset
|
1 ## Copyright (C) 1995-2012 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} {} rectangle_lw (@var{n}, @var{b}) | |
9051
1bf0ce0930be
Grammar check TexInfo in all .m files
Rik <rdrider0-list@yahoo.com>
parents:
7125
diff
changeset
|
21 ## Rectangular lag window. Subfunction used for spectral density |
3191 | 22 ## estimation. |
3449 | 23 ## @end deftypefn |
3426 | 24 |
3457 | 25 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
26 ## Description: Rectangular lag window | |
3191 | 27 |
28 function retval = rectangle_lw (n, b) | |
3426 | 29 |
7125 | 30 if (nargin != 2) |
31 print_usage (); | |
32 endif | |
33 | |
3191 | 34 retval = zeros (n, 1); |
35 t = floor (1 / b); | |
3426 | 36 |
3191 | 37 retval (1:t, 1) = ones (t, 1); |
38 | |
39 endfunction |