Mercurial > hg > octave-lyh
comparison scripts/signal/fftconv.m @ 3449:858695b3ed62
[project @ 2000-01-18 04:08:59 by jwe]
author | jwe |
---|---|
date | Tue, 18 Jan 2000 04:09:14 +0000 |
parents | f8dde1807dee |
children | e031284eea27 |
comparison
equal
deleted
inserted
replaced
3448:0fb75d95b14f | 3449:858695b3ed62 |
---|---|
33 ## Adapted-By: jwe | 33 ## Adapted-By: jwe |
34 | 34 |
35 function c = fftconv (a, b, N) | 35 function c = fftconv (a, b, N) |
36 | 36 |
37 if (nargin < 2 || nargin > 3) | 37 if (nargin < 2 || nargin > 3) |
38 usage ("fftconv (b, x [, N])"); | 38 usage ("fftconv (b, x, N)"); |
39 endif | 39 endif |
40 | 40 |
41 if (! (is_vector (a) && is_vector (b))) | 41 if (! (is_vector (a) && is_vector (b))) |
42 error ("fftconv: both a and b should be vectors"); | 42 error ("fftconv: both a and b should be vectors"); |
43 endif | 43 endif |