powered by
Coerces a multivariate polynomial into a function
# S3 method for mvp as.function(x, ...)
Multivariate polynomial
Further arguments (currently ignored)
Robin K. S. Hankin
p <- as.mvp("1+a^2 + a*b^2 + c") p f <- as.function(p) f f(a=1) f(a=1,b=2) f(a=1,b=2,c=3) # coerces to a scalar f(a=1,b=2,c=3,drop=FALSE) # formal mvp object
Run the code above in your browser using DataLab