int2fun {rationalfun} | R Documentation |
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.
int2fun(expr)
expr |
a function call, typically returned by
|
A function with one argument which could be a real or complex vector.
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))