comparison scripts/polynomial/polygcd.m @ 6850:9398f6a81bdf

[project @ 2007-08-31 17:29:22 by jwe]
author jwe
date Fri, 31 Aug 2007 17:29:55 +0000
parents 34f96dd5441b
children 93c65f2a5668
comparison
equal deleted inserted replaced
6849:c118ea1823f1 6850:9398f6a81bdf
29 ## algorithm, so don't try it on large polynomials. 29 ## algorithm, so don't try it on large polynomials.
30 ## 30 ##
31 ## Example 31 ## Example
32 ## @example 32 ## @example
33 ## polygcd (poly(1:8), poly(3:12)) - poly(3:8) 33 ## polygcd (poly(1:8), poly(3:12)) - poly(3:8)
34 ## deconv (poly(1:8), polygcd (poly(1:8), poly(3:12))) - poly(1:2) 34 ## @result{} [ 0, 0, 0, 0, 0, 0, 0 ]
35 ## deconv (poly(1:8), polygcd (poly(1:8), poly(3:12))) - poly(1:2)
36 ## @result{} [ 0, 0, 0 ]
35 ## @end example 37 ## @end example
36 ## @seealso{poly, polyinteg, polyderiv, polyreduce, roots, conv, deconv, 38 ## @seealso{poly, polyinteg, polyderiv, polyreduce, roots, conv, deconv,
37 ## residue, filter, polyval, and polyvalm} 39 ## residue, filter, polyval, and polyvalm}
38 ## @end deftypefn 40 ## @end deftypefn
39 41