polyProduct: Function to multiply polynomials
Description
This function takes in two vectors characterizing polynomials. It
then returns a vector characterizing the product of the two
polynomials.
Usage
polyProduct(poly1, poly2)
Arguments
poly1
vector, characerizing a polynomial.
poly2
vector, characerizing a polynomial.
Value
vector, characterizing the product of the two polynomials
characterized poly1
and poly2
.