solve.polynom | R Documentation |
Solve polynomial equations, a(x) = b(x), or alternatively find the zeros of the polynomial a(x) - b(x)
## S3 method for class 'polynom'
solve(a, b, ...)
## S3 method for class 'polylist'
solve(a, b, ...)
a , b |
Polynomials for the LHS and RHS respectively |
... |
Currently unused |
A vector of roots, usually complex
p <- poly_calc(0:5)
solve(p)
solve(p, 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.