as.function.multipol {multipol} | R Documentation |
Coerce a multipol to a function using environments
as.function.multipol(x, ...)
x |
A multipol |
... |
Further arguments, currently ignored |
Robin K. S. Hankin
a <- as.multipol(array (1:12 ,c(2,3,2))) f1 <- as.function(a) f2 <- as.function(a*a) x <- matrix(rnorm(15),ncol=3) f1(x)^2 - f2(x) #should be zero [non-trivial!]