Multiplication of two polynomial by matrix multiplication
...
polyMul(p,q)
p |
... |
q |
... |
more details than the description above
Describe the value returned!! If it is a LIST, use
comp1 |
Description of 'comp1' |
further notes
who you are
references to the literature
objects to See Also as polyMatrix-package
set.seed(12345) p <- polynom::polynomial(rpois(rgeom(1,.2)+1,2)) q <- polynom::polynomial(rpois(rgeom(1,.2)+1,2)) p q p * q as.numeric(p * q) # 9 30 30 18 19 14 7 3 polyMul(p, q) polyMul(q, p) # clean up # rm(p, q)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.