math_polynom_from_roots | R Documentation |
The polynomial will be calculated according to the roots supplied in the list.
If roots are complex it will also include the complex conjugated root.
The resulting polynomial will be rounded according to round_digits
.
math_polynom_from_roots(roots, round_digits = 9)
roots |
list of roots |
round_digits |
the number of digit used to round the polynomial coefficients |
polynomial character string
Florian Wagner florian.wagner@wagnius.ch
c(-5,0,2i)|>math_polynom_from_roots()
c(-5,0,2i,-2i)|>math_polynom_from_roots()
c(3,2+1i)|>math_polynom_from_roots()
c(3,2+1i,2-1i)|>math_polynom_from_roots()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.