comparison scripts/polynomial/deconv.m @ 4030:22bd65326ec1

[project @ 2002-08-09 18:58:13 by jwe]
author jwe
date Fri, 09 Aug 2002 19:00:16 +0000
parents e63a3a6d7797
children c08cb1098afc
comparison
equal deleted inserted replaced
4029:2cc57b6169cf 4030:22bd65326ec1
38 38
39 if (nargin != 2) 39 if (nargin != 2)
40 usage ("deconv (y, a)"); 40 usage ("deconv (y, a)");
41 endif 41 endif
42 42
43 if (! (is_vector (y) && is_vector (a))) 43 if (! (isvector (y) && isvector (a)))
44 error("conv: both arguments must be vectors"); 44 error("conv: both arguments must be vectors");
45 endif 45 endif
46 46
47 la = length (a); 47 la = length (a);
48 ly = length (y); 48 ly = length (y);