I would like to know if there is a way to create Rcpp functions using the inline packages within the main function. This is an example of what I want to do:
library(inline)
library(Rcpp)
a = 1:10
cpp.fun = cxxfunction(signature(data1="numeric"),
plugin="Rcpp",
body="
int fun1( int a1)
{int b1 = a1;
b1 = b1*b1;
return(b1);
}
NumericVector fun_data = data1;
int n = data1.size();
for(i=0;i<n;i++){
fun_data[i] = fun1(fun_data[i]);
}
return(fun_data);
")
which should result in:
> cpp.fun(a)
[1] 1 4 9 16 25 36 49 64 81 100
however I know that the compiler will not accept the creation of your own function within the main method. How will I go about creating and calling another Rcpp function with inline without having to pass it through to R?