1## Copyright (C) 2001, 2006, 2007, 2009 Paul Kienzle
3## This file is part of Octave.
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
7## the Free Software Foundation; either version 3 of the License, or (at
8## your option) any later version.
10## Octave is distributed in the hope that it will be useful, but
11## WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13## General Public License for more details.
15## You should have received a copy of the GNU General Public License
16## along with Octave; see the file COPYING. If not, see
17## <http://www.gnu.org/licenses/>.
20## @deftypefn {Function File} {@var{y} =} filter2 (@var{b}, @var{x})
21## @deftypefnx {Function File} {@var{y} =} filter2 (@var{b}, @var{x}, @var{shape})
22## Apply the 2-D FIR filter @var{b} to @var{x}. If the argument
23## @var{shape} is specified, return an array of the desired shape.
24## Possible values are:
28## pad @var{x} with zeros on all sides before filtering.
30## unpadded @var{x} (default)
32## trim @var{x} after filtering so edge effects are no included.
35## Note this is just a variation on convolution, with the parameters
36## reversed and @var{b} rotated 180 degrees.
40## Author: Paul Kienzle <pkienzle@users.sf.net>
44function Y = filter2 (B, X, shape)
46 if (nargin < 2 || nargin > 3)
54 Y = conv2 (X, B(nr:-1:1, nc:-1:1), shape);