polylist {polynom} | R Documentation |
Create and manipulate lists of polynomials.
polylist(...)
... |
a list of R objects. |
polylist
takes a list of arguments, tries to convert each into
a polynomial (see polynomial
), and sets the class of the
list to "polylist"
.
This class has several useful methods, such as taking derivatives
(link{deriv}
) and antiderivatives (integral
),
printing and plotting.
## Calculate orthogonal polynomials pl <- poly.orth(rep(1:4, 1:4), 3) pl plot(pl) deriv(pl) integral(pl)