Extract value from an object
Functions like integrate()
and nlm()
return objects that contain more
information that simply the value of the integration or optimization. value()
extracts
the primary value from such objects. Currently implemented situations include the output from
integrate()
,
nlm()
,
cubature::adaptIntegrate()
, and
uniroot()
.
value(object, ...) ## S3 method for class 'integrate' value(object, ...) ## Default S3 method: value(object, ...)
object |
an object from which a "value" is to be extracted. |
... |
additional arguments (currently ignored). |
integrate(sin, 0, 1) %>% value() nlm(cos, p = 0) %>% value() uniroot(cos, c(0, 2)) %>% value()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.