extremes | R Documentation |
Computes the real valued extremes (minima, maxima, and saddle points) for a univariate polynomial. The computation can be limited to a specific type of extremes.
extremes(p, type = c("all", "minimum", "maximum", "saddle"), tol = 1e-09)
p |
a polynomial |
type |
character: either |
tol |
numeric: if the absolute value of the imaginary part of the zeroes of the derivative of |
A numeric vector.
p <- polynomial(c(0,0,0,1))
extremes(p)
p <- integral(poly.calc(-1:1))
extremes(p)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.