5820
|
1 ## Copyright (C) 2001 Paul Kienzle |
|
2 ## |
|
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 |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
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. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
|
19 |
5996
|
20 ## -*- texinfo -*- |
6575
|
21 ## @deftypefn {Function File} {@var{y} =} filter2 (@var{b}, @var{x}) |
6549
|
22 ## @deftypefnx {Function File} {@var{y} =} filter2 (@var{b}, @var{x}, @var{shape}) |
5820
|
23 ## Apply the 2-D FIR filter @var{b} to @var{x}. If the argument |
|
24 ## @var{shape} is specified, return an array of the desired shape. |
5997
|
25 ## Possible values are: |
5820
|
26 ## |
|
27 ## @table @asis |
|
28 ## @item 'full' |
|
29 ## pad @var{x} with zeros on all sides before filtering. |
|
30 ## @item 'same' |
|
31 ## unpadded @var{x} (default) |
|
32 ## @item 'valid' |
|
33 ## trim @var{x} after filtering so edge effects are no included. |
|
34 ## @end table |
|
35 ## |
|
36 ## Note this is just a variation on convolution, with the parameters |
|
37 ## reversed and @var{b} rotated 180 degrees. |
|
38 ## @seealso{conv2} |
5996
|
39 ## @end deftypefn |
5820
|
40 |
|
41 ## Author: Paul Kienzle <pkienzle@users.sf.net> |
|
42 ## 2001-02-08 |
|
43 ## * initial release |
|
44 |
|
45 function Y = filter2 (B, X, shape) |
|
46 |
|
47 if (nargin < 2 || nargin > 3) |
6046
|
48 print_usage (); |
5820
|
49 endif |
|
50 if (nargin < 3) |
|
51 shape = "same"; |
|
52 endif |
|
53 |
|
54 [nr, nc] = size(B); |
|
55 Y = conv2 (X, B(nr:-1:1, nc:-1:1), shape); |
|
56 endfunction |