我正在尝试运行测试功能,但出现编译错误:
library(Rcpp)
library(inline)
testfun = cxxfunction(
signature(x="numeric", i="integer"),
body = '
NumericVector xx(x);
int ii = as<int>(i);
xx = xx * ii;
return( xx );
', plugin="Rcpp")
testfun(1:5, 3)
compileCode(f, code, language = language, verbose = verbose) 中的错误:编译错误,未创建函数/方法!另外:警告信息:运行命令'C:/PROGRA~1/R/R-215~1.1/bin/x64/R CMD SHLIB filede44a566900.cpp 2> filede44a566900.cpp.err.txt'状态为1
我会很感激你的帮助。我正在使用 Windows 7、R2.15.1、64 位