私はRcpp
、またはより具体的には を初めて使用し、コードで を定数としてRcppEigen
使用する方法に苦労しています。pi
コードは MCMC アルゴリズムで何度も実行されるため、速度の改善は完璧です。現在、次のコードのように、関数を呼び出すたびに pi を渡します。
require(RcppEigen)
require(inline)
I.Cpp <- "
using Eigen::Map;
using Eigen::MatrixXd;
using Eigen::VectorXd;
using Rcpp::NumericVector;
const Map<MatrixXd> delta(as<Map<MatrixXd> >(delta0));
const Map<VectorXd> d(as<Map<VectorXd> >(DD));
const Rcpp::NumericVector tpi(pie);
double pi = tpi[0];
const MatrixXd I = delta.transpose() * d.asDiagonal() * pi * pi;
return wrap(I);
"
I.cpp <- cxxfunction(signature(delta0 = "matrix", DD = "numeric", pie = "numeric"), I.Cpp, plugin = "RcppEigen")
delta0 <- matrix(rnorm(25), 5)
DD <- rnorm(5)
I.cpp(delta0, DD, pi) # this piece of code gets called multiple times?
私の質問:の呼び出しごとに定数を渡すことなく、定数pi
を使用するにはどうすればよいですか?RcppEigen
I.cpp