c.polylist {PolynomF} | R Documentation |
These three functions implement methods for well-known generic functions.
## S3 method for class 'polylist': c(..., recursive = FALSE) ## S3 method for class 'polylist': rep(x, times, ...) ## S3 method for class 'polylist': unique(x, incomparables = FALSE, ...)
... |
As for the generic function. |
x |
As for the generic function. |
recursive |
As for the generic function. |
times |
As for the generic function. |
incomparables |
As for the generic function. |
Perform familiar operations, retaining polylist
class for the result.
An object of class polylist
Kurt Hornik, slightly modified by Bill Venables
None
p <- poly.from.zeros(-3:4) p5 <- rep(polylist(p), 5) p5 p6 <- c(p, p5) p6 unique(p6)