int2fun {rationalfun} | R Documentation |
Convert a call to a function
Description
Convert a function call to a function in R. In this
package, the function is typically used to convert the
result of integral.rationalfun()
to a
function with one argument.
Usage
int2fun(expr)
Arguments
expr |
a function call, typically returned by
|
Value
A function with one argument which could be a real or complex vector.
See Also
Examples
x <- rationalfun(c(-6, -1, -8, 15, -1, 8, -9, 2),
c(8, 12, 16, 4, 4))
int <- integral(x)
fun <- int2fun(int)
fun(c(0, 1))
[Package rationalfun version 0.1-1 Index]