comparison scripts/signal/blackman.m @ 25003:2365c2661b3c stable

doc: Spellcheck documentation ahead of 4.4 release. * aspell-octave.en.pws: Add new words to Octave-only spelling dictionary. Remove exception words which are no longer used in manual. * basics.txi, bugs.txi, func.txi, geometry.txi, install.txi, matrix.txi, package.txi, plot.txi, poly.txi, preface.txi, quad.txi, sparse.txi, strings.txi, vectorize.txi, data.cc, defaults.cc, file-io.cc, pinv.cc, quadcc.cc, qz.cc, rand.cc, schur.cc, syscalls.cc, sysdep.cc, toplev.cc, amd.cc, audioread.cc, colamd.cc, dmperm.cc, symrcm.cc, quadgk.m, quadl.m, imfinfo.m, rgb2gray.m, javachk.m, usejava.m, unpack.m, fzero.m, glpk.m, pqpnonneg.m, stemleaf.m, print.m, polyfit.m, blackman.m, bicgstab.m, cgs.m, eigs.m, pcg.m, tfqmr.m, gallery.m, rosser.m, toeplitz.m, vander.m, isstrprop.m: Add @nospell{} macro around proper names and other words which aspell should not check. Correct misspellings identified by aspell.
author Rik <rik@octave.org>
date Mon, 26 Mar 2018 10:45:04 -0700
parents 194eb4bd202b
children 6652d3823428
comparison
equal deleted inserted replaced
25002:64c6e8bfc9e5 25003:2365c2661b3c
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {} {} blackman (@var{m}) 20 ## @deftypefn {} {} blackman (@var{m})
21 ## @deftypefnx {} {} blackman (@var{m}, "periodic") 21 ## @deftypefnx {} {} blackman (@var{m}, "periodic")
22 ## @deftypefnx {} {} blackman (@var{m}, "symmetric") 22 ## @deftypefnx {} {} blackman (@var{m}, "symmetric")
23 ## Return the filter coefficients of a Blackman window of length @var{m}. 23 ## Return the filter coefficients of a @nospell{Blackman} window of length
24 ## @var{m}.
24 ## 25 ##
25 ## If the optional argument @qcode{"periodic"} is given, the periodic form 26 ## If the optional argument @qcode{"periodic"} is given, the periodic form
26 ## of the window is returned. This is equivalent to the window of length 27 ## of the window is returned. This is equivalent to the window of length
27 ## @var{m}+1 with the last coefficient removed. The optional argument 28 ## @var{m}+1 with the last coefficient removed. The optional argument
28 ## @qcode{"symmetric"} is equivalent to not specifying a second argument. 29 ## @qcode{"symmetric"} is equivalent to not specifying a second argument.
29 ## 30 ##
30 ## For a definition of the Blackman window, see, e.g., 31 ## For a definition of the @nospell{Blackman} window, see, e.g.,
31 ## @nospell{A.V. Oppenheim & R. W. Schafer}, 32 ## @nospell{A.V. Oppenheim & R. W. Schafer},
32 ## @cite{Discrete-Time Signal Processing}. 33 ## @cite{Discrete-Time Signal Processing}.
33 ## @end deftypefn 34 ## @end deftypefn
34 35
35 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at> 36 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at>