comparison scripts/polynomial/conv.m @ 5053:c08cb1098afc

[project @ 2004-10-19 23:10:54 by jwe]
author jwe
date Tue, 19 Oct 2004 23:10:55 +0000
parents 22bd65326ec1
children 4c8a2e4e0717
comparison
equal deleted inserted replaced
5052:c6ef19da4b24 5053:c08cb1098afc
24 ## @code{y = conv (a, b)} returns a vector of length equal to 24 ## @code{y = conv (a, b)} returns a vector of length equal to
25 ## @code{length (a) + length (b) - 1}. 25 ## @code{length (a) + length (b) - 1}.
26 ## If @var{a} and @var{b} are polynomial coefficient vectors, @code{conv} 26 ## If @var{a} and @var{b} are polynomial coefficient vectors, @code{conv}
27 ## returns the coefficients of the product polynomial. 27 ## returns the coefficients of the product polynomial.
28 ## @end deftypefn 28 ## @end deftypefn
29 ##
29 ## @seealso{deconv, poly, roots, residue, polyval, polyderiv, and polyinteg} 30 ## @seealso{deconv, poly, roots, residue, polyval, polyderiv, and polyinteg}
30 31
31 ## Author: Tony Richardson <arichard@stark.cc.oh.us> 32 ## Author: Tony Richardson <arichard@stark.cc.oh.us>
32 ## Created: June 1994 33 ## Created: June 1994
33 ## Adapted-By: jwe 34 ## Adapted-By: jwe