当我在R中运行我的Rcpp cde时,“不是矩阵”错误

时间:2017-06-12 09:52:23

标签: r matrix rcpp armadillo

我正在尝试在我的Rcpp代码中使用nearPD函数。虽然看起来微不足道,但我找不到为什么它不起作用。它是我的代码的简化版本:

#include <RcppArmadillo.h>
// [[Rcpp::depends(RcppArmadillo)]]

using namespace arma;
using namespace Rcpp;
// [[Rcpp::export]]
mat eBsc(mat R){
  Rcpp::Environment Matrix("package:Matrix"); 
    Rcpp::Function nearPD = Matrix["nearPD"];
    Rcpp::List PD=nearPD(R);
    mat P = PD["mat"];
return P;   
  }

但是当我想测试它时,例如。如下所示:R:

A <- matrix(1, 3,3); A[1,3] <- A[3,1] <- 0
d<-eBsc(A)

我看到此错误消息:"Error in eBsc(A) : not a matrix"。 我必须提到nearPD返回一个输出列表,第一个是矩阵。

1 个答案:

答案 0 :(得分:6)

你错了。列表的第一个元素不是矩阵。它是Matrix包中定义的S4对象。这有效:

#include <Rcpp.h>

using namespace Rcpp;
// [[Rcpp::export]]
S4 eBsc(NumericMatrix R){
  Rcpp::Environment Matrix("package:Matrix"); 
  Rcpp::Function nearPD = Matrix["nearPD"];
  Rcpp::List PD=nearPD(R);
  S4 P = PD["mat"];
  return P;   
}

/*** R
library(Matrix)
A <- matrix(1, 3,3); A[1,3] <- A[3,1] <- 0
eBsc(A)
  */

输出:

> library(Matrix)

> A <- matrix(1, 3,3); A[1,3] <- A[3,1] <- 0

> eBsc(A)
3 x 3 Matrix of class "dpoMatrix"
          [,1]      [,2]      [,3]
[1,] 1.1035534 0.8535534 0.1035534
[2,] 0.8535534 1.2071068 0.8535534
[3,] 0.1035534 0.8535534 1.1035534

PS:如果你需要一个矩阵使用来自包基的as.matrix(在Rcpp或R中)。

PPS:显然,不在C ++代码中调用R函数会更有效。