polymul, polydiv | R Documentation |
Multiply or divide two polynomials given as vectors.
polymul(p, q)
polydiv(p, q)
p , q |
Vectors representing two polynomials. |
Polynomial multiplication realized simply by multiplying and summing up
all the coefficients. Division is an alias for deconv
.
Polynomials are defined from highest to lowest coefficient.
Vector representing a polynomial. For division, it returns a list with 'd' the result of the division and 'r' the rest.
conv
also realizes polynomial multiplication, through Fast Fourier
Transformation, with the drawback that small imaginary parts may evolve.
deconv
can also be used for polynomial division.
conv
, deconv
# Multiply x^2 + x + 1 with itself
polymul(c(1, 1, 1), c(0, 1, 1, 1)) #=> 1 2 3 2 1
polydiv(c(1, 2, 3, 2, 1), c(1, 1, 1))
#=> d = c(1,1,1); #=> r = c(0.000000e+00 -1.110223e-16)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.