Convert expression into function object.
as_func(x, order = NULL, vec_arg = FALSE)
# S3 method for caracas_symbol
as.function(x, ...)
caracas expression.
desired order of function argument. Defaults to alphabetical ordering.
should the function take vector valued argument.
not used
if (has_sympy()) {
def_sym(b0, b1, b2, k, x)
e <- b1 + (b0 - b1)*exp(-k*x) + b2*x
f1 <- as_func(e)
f1
f1(1, 2, 3, 4, 5)
f1 <- as_func(e, order = sort(all_vars(e)))
f1(1, 2, 3, 4, 5)
f2 <- as_func(e, vec_arg = TRUE)
f2
f2(c(1, 2, 3, 4, 5))
f2 <- as_func(e, order = sort(all_vars(e)), vec_arg = TRUE)
f2
f2(c(1,2,3,4,5))
f1a <- as.function(e)
f1a
f1a(1, 2, 3, 4, 5)
f1(1, 2, 3, 4, 5)
}
#> [1] 17