使用 RcppArmadillo 时无法调用 ones 或 eye 函数

Fail to call ones or eye function when using RcppArmadillo

我想在Armadillo中使用oneeye函数来构造矩阵或向量。但是,它不允许我这样做。这是一个示例代码:

#include <RcppArmadillo.h>

// [[Rcpp::depends(RcppArmadillo)]]
using namespace Rcpp;
// [[Rcpp::export]]
SEXP Generate(arma::mat Mat){
arma::mat Mat_2 = ones<mat>(5,6);
}

错误信息让我想起了use of undeclared idenfier of 'mat'。当我删除 <mat> 时,另一个消息显示 use of undeclared idenfier of 'ones'

我查阅了包含 ones 函数的 Armadillo 教程。我想知道为什么我的代码无法调用它。我错过了什么吗?

您的代码中存在一些问题:

  • 为什么 return SEXP?充分利用类型
  • 不使用为什么要传入Mat
  • return声明
  • 命名空间的使用有些松散。

清理后的版本如下:

#include <RcppArmadillo.h>

// [[Rcpp::depends(RcppArmadillo)]]

// [[Rcpp::export]]
arma::mat Generate(int n=5, int k=6){
    arma::mat m = arma::ones<arma::mat>(n,k);
    return m;
}

/*** R
Generate()
*/

它编译并运行良好:

> Rcpp::sourceCpp("~/git/Whosebug/67006975/answer.cpp")

> Generate()
     [,1] [,2] [,3] [,4] [,5] [,6]
[1,]    1    1    1    1    1    1
[2,]    1    1    1    1    1    1
[3,]    1    1    1    1    1    1
[4,]    1    1    1    1    1    1
[5,]    1    1    1    1    1    1
>