comparison scripts/signal/fftfilt.m @ 17170:d6499c14021c

doc: Periodic grammarcheck of documentation. * doc/interpreter/basics.txi, doc/interpreter/expr.txi, doc/interpreter/install.txi, doc/interpreter/java.txi, doc/interpreter/plot.txi, doc/interpreter/sparse.txi, doc/interpreter/vectorize.txi, libinterp/corefcn/cellfun.cc, libinterp/corefcn/debug.cc, libinterp/corefcn/file-io.cc, libinterp/corefcn/load-save.cc, libinterp/corefcn/matrix_type.cc, libinterp/corefcn/pr-output.cc, libinterp/parse-tree/oct-parse.in.yy, liboctave/numeric/LSODE-opts.in, scripts/image/imformats.m, scripts/image/imread.m, scripts/image/imwrite.m, scripts/miscellaneous/error_ids.m, scripts/miscellaneous/fileattrib.m, scripts/miscellaneous/mex.m, scripts/miscellaneous/mkoctfile.m, scripts/miscellaneous/warning_ids.m, scripts/prefs/prefdir.m, scripts/prefs/preferences.m, scripts/signal/fftfilt.m, scripts/strings/isstrprop.m, scripts/testfun/assert.m: Periodic grammarcheck of documentation.
author Rik <rik@octave.org>
date Sun, 04 Aug 2013 13:08:39 -0700
parents b9ffacf34c2d
children 76f448d8089d
comparison
equal deleted inserted replaced
17169:9ba57ed05207 17170:d6499c14021c
22 ## With two arguments, @code{fftfilt} filters @var{x} with the FIR filter 22 ## With two arguments, @code{fftfilt} filters @var{x} with the FIR filter
23 ## @var{b} using the FFT. 23 ## @var{b} using the FFT.
24 ## 24 ##
25 ## Given the optional third argument, @var{n}, @code{fftfilt} uses the 25 ## Given the optional third argument, @var{n}, @code{fftfilt} uses the
26 ## overlap-add method to filter @var{x} with @var{b} using an @var{n}-point 26 ## overlap-add method to filter @var{x} with @var{b} using an @var{n}-point
27 ## FFT. The FFT size must be an even power of 2 and must be greater than 27 ## FFT@. The FFT size must be an even power of 2 and must be greater than
28 ## or equal to the length of @var{b}. If the specified @var{n} does not 28 ## or equal to the length of @var{b}. If the specified @var{n} does not
29 ## meet these criteria, it is automatically adjusted to the nearest value 29 ## meet these criteria, it is automatically adjusted to the nearest value
30 ## that does. 30 ## that does.
31 ## 31 ##
32 ## If @var{x} is a matrix, filter each column of the matrix. 32 ## If @var{x} is a matrix, filter each column of the matrix.