
Last chance! 50% off unlimited learning
Sale ends in
Group method for functions in the Math group.
# S3 method for polynomial
Math(x, …)
an object of class "polynomial"
.
further arguments to be passed to or from methods, such
as digits
.
A polynomial with transformed coefficients.
Most math group functions are disallowed with polynomial arguments.
The only exceptions are ceiling
, floor
,
round
, trunc
, and signif
which may be used to transform the coefficients accordingly.
# NOT RUN {
op <- options(digits=18)
p <- poly.from.values(1:4, (2:5)^2)
## 1 + 2.00000000000001*x + x^2
p <- round(p)
## 1 + 2*x + x^2
options(op)
# }
Run the code above in your browser using DataLab