annotate scripts/signal/fftfilt.m @ 14138:72c96de7a403 stable

maint: update copyright notices for 2012
author John W. Eaton <jwe@octave.org>
date Mon, 02 Jan 2012 14:25:41 -0500
parents 186c3b80ba54
children f3d52523cde1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14138
72c96de7a403 maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents: 13092
diff changeset
1 ## Copyright (C) 1994-2012 John W. Eaton
2313
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
2 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
3 ## This file is part of Octave.
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
4 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
5 ## Octave is free software; you can redistribute it and/or modify it
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
6 ## under the terms of the GNU General Public License as published by
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
7 ## the Free Software Foundation; either version 3 of the License, or (at
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
8 ## your option) any later version.
2313
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
9 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
10 ## Octave is distributed in the hope that it will be useful, but
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
13 ## General Public License for more details.
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
14 ##
5ca126254d15 [project @ 1996-07-11 21:25:22 by jwe]
jwe
parents: 2312
diff changeset
15 ## You should have received a copy of the GNU General Public License
7016
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
16 ## along with Octave; see the file COPYING. If not, see
93c65f2a5668 [project @ 2007-10-12 06:40:56 by jwe]
jwe
parents: 6046
diff changeset
17 ## <http://www.gnu.org/licenses/>.
1026
9fc405c8c06c [project @ 1995-01-11 21:17:01 by jwe]
jwe
parents: 904
diff changeset
18
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
19 ## -*- texinfo -*-
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
20 ## @deftypefn {Function File} {} fftfilt (@var{b}, @var{x}, @var{n})
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3367
diff changeset
21 ##
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
22 ## With two arguments, @code{fftfilt} filters @var{x} with the FIR filter
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
23 ## @var{b} using the FFT.
3426
f8dde1807dee [project @ 2000-01-13 08:40:00 by jwe]
jwe
parents: 3367
diff changeset
24 ##
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
25 ## Given the optional third argument, @var{n}, @code{fftfilt} uses the
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
26 ## overlap-add method to filter @var{x} with @var{b} using an N-point FFT.
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
27 ##
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
28 ## If @var{x} is a matrix, filter each column of the matrix.
12546
39ca02387a32 Improve docstrings for a number of functions.
Rik <octave@nomad.inbox5.com>
parents: 11523
diff changeset
29 ## @seealso{filter, filter2}
3367
0748b03c3510 [project @ 1999-11-20 14:52:38 by jwe]
jwe
parents: 2847
diff changeset
30 ## @end deftypefn
2312
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
31
5428
2a16423e4aa0 [project @ 2005-08-23 18:38:27 by jwe]
jwe
parents: 5307
diff changeset
32 ## Author: Kurt Hornik <Kurt.Hornik@wu-wien.ac.at>
2312
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
33 ## Created: 3 September 1994
204cc7db6f4a [project @ 1996-07-11 21:20:36 by jwe]
jwe
parents: 2311
diff changeset
34 ## Adapted-By: jwe
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
35
11469
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
36 function y = fftfilt (b, x, n)
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
37
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
38 ## If N is not specified explicitly, we do not use the overlap-add
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
39 ## method at all because loops are really slow. Otherwise, we only
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
40 ## ensure that the number of points in the FFT is the smallest power
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
41 ## of two larger than N and length(b). This could result in length
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
42 ## one blocks, but if the user knows better ...
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
43
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
44 if (nargin < 2 || nargin > 3)
6046
34f96dd5441b [project @ 2006-10-10 16:10:25 by jwe]
jwe
parents: 5428
diff changeset
45 print_usage ();
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
46 endif
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
47
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
48 transpose = (rows (x) == 1);
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
49
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
50 if (transpose)
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
51 x = x.';
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
52 endif
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
53
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
54 [r_x, c_x] = size (x);
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
55 [r_b, c_b] = size (b);
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
56
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
57 if (! isvector (b))
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
58 error ("fftfilt: B must be a vector");
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
59 endif
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
60
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
61 if (ndims (x) != 2)
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
62 error ("fftfilt: X must be a 1-D or 2-D array");
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
63 endif
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
64
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
65 l_b = r_b * c_b;
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
66 b = reshape (b, l_b, 1);
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
67
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
68 if (nargin == 2)
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
69 ## Use FFT with the smallest power of 2 which is >= length (x) +
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
70 ## length (b) - 1 as number of points ...
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
71 n = 2 ^ nextpow2 (r_x + l_b - 1);
11469
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
72 B = fft (b, n);
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
73 y = ifft (fft (x, n) .* B(:, ones (1, c_x)));
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
74 else
2303
5cffc4b8de57 [project @ 1996-06-24 09:15:24 by jwe]
jwe
parents: 1887
diff changeset
75 ## Use overlap-add method ...
11469
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
76 if (! (isscalar (n)))
11472
1740012184f9 Use uppercase for variable names in error() strings to match Info documentation. Only m-files done.
Rik <octave@nomad.inbox5.com>
parents: 11469
diff changeset
77 error ("fftfilt: N has to be a scalar");
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
78 endif
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
79 n = 2 ^ nextpow2 (max ([n, l_b]));
11469
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
80 L = n - l_b + 1;
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
81 B = fft (b, n);
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
82 B = B(:, ones (c_x,1));
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
83 R = ceil (r_x / L);
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
84 y = zeros (r_x, c_x);
1026
9fc405c8c06c [project @ 1995-01-11 21:17:01 by jwe]
jwe
parents: 904
diff changeset
85 for r = 1:R;
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
86 lo = (r - 1) * L + 1;
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
87 hi = min (r * L, r_x);
11469
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
88 tmp = zeros (n, c_x);
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
89 tmp(1:(hi-lo+1),:) = x(lo:hi,:);
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
90 tmp = ifft (fft (tmp) .* B);
11469
c776f063fefe Overhaul m-script files to use common variable name between code and documentation.
Rik <octave@nomad.inbox5.com>
parents: 7017
diff changeset
91 hi = min (lo+n-1, r_x);
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
92 y(lo:hi,:) = y(lo:hi,:) + tmp(1:(hi-lo+1),:);
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
93 endfor
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
94 endif
2325
b5568c31ee2c [project @ 1996-07-15 22:20:21 by jwe]
jwe
parents: 2313
diff changeset
95
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
96 y = y(1:r_x, :);
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
97 if (transpose)
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
98 y = y.';
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
99 endif
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
100
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
101 ## Final cleanups: If both x and b are real, y should be real.
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
102 ## If both x and b are integer, y should be integer.
1026
9fc405c8c06c [project @ 1995-01-11 21:17:01 by jwe]
jwe
parents: 904
diff changeset
103
3890
9652abf2c297 [project @ 2002-04-04 23:24:39 by jwe]
jwe
parents: 3457
diff changeset
104 if (isreal (b) && isreal (x))
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
105 y = real (y);
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
106 endif
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
107 if (! any (b - fix (b)))
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
108 idx = !any (x - fix (x));
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
109 y(:, idx) = round (y(:, idx));
787
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
110 endif
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
111
c5d35bb139b6 [project @ 1994-10-11 00:34:13 by jwe]
jwe
parents:
diff changeset
112 endfunction
13092
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
113
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
114
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
115 %!shared b, x, r
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
116 %!test
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
117 %! b = [1 1];
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
118 %! x = [1, zeros(1,9)];
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
119 %! assert(fftfilt(b, x ), [1 1 0 0 0 0 0 0 0 0] , eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
120 %! assert(fftfilt(b, x.'), [1 1 0 0 0 0 0 0 0 0].', eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
121 %! assert(fftfilt(b.',x ), [1 1 0 0 0 0 0 0 0 0] , eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
122 %! assert(fftfilt(b.',x.'), [1 1 0 0 0 0 0 0 0 0].', eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
123
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
124 %!test
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
125 %! r = sqrt(1/2) * (1+i);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
126 %! b = b*r;
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
127 %! assert(fftfilt(b, x ), r*[1 1 0 0 0 0 0 0 0 0] , eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
128 %! assert(fftfilt(b, r*x), r*r*[1 1 0 0 0 0 0 0 0 0], eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
129 %! assert(fftfilt(b, x.'), r*[1 1 0 0 0 0 0 0 0 0].', eps);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
130
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
131 %!test
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
132 %! b = [1 1];
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
133 %! x = zeros (10,3); x(1,1)=-1; x(1,2)=1;
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
134 %! y0 = zeros (10,3); y0(1:2,1)=-1; y0(1:2,2)=1;
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
135 %! y = fftfilt (b, x);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
136 %! assert (y,y0);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
137
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
138 %!test
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
139 %! b = rand (10, 1);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
140 %! x = rand (10, 1);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
141 %! y0 = filter (b, 1, x);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
142 %! y = filter (b, 1, x);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
143 %! assert (y, y0);
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
144
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
145 %% Test input validation
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
146 %!error fftfilt (1)
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
147 %!error fftfilt (1, 2, 3, 4)
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
148 %!error fftfilt (ones (2), 1)
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
149 %!error fftfilt (2, ones (3,3,3))
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
150 %!error fftfilt (2, 1, ones (2))
186c3b80ba54 codesprint: Tests for fftfilt()
Rik <octave@nomad.inbox5.com>
parents: 12546
diff changeset
151