当我们想将 Rcpp 中的多种类型的对象通过一个 return 函数返回时,此时就需要将我们的所有对象整理成一个 Rcpp::List 型,然后再进行返回。 但相比于 R 中的 li
当我们想将 Rcpp
中的多种类型的对象通过一个 return
函数返回时,此时就需要将我们的所有对象整理成一个 Rcpp::List
型,然后再进行返回。
但相比于 R 中的 list(mat1 = mat1, mat2 = mat2)
,Rcpp
中的列表创建就相对复杂一些,需要使用 create()
函数,如下面例子所示:
Rcpp::List ListFun(MatrixXd X) {
Eigen::MatrixXd mat1, mat2;
return List::create(Named("matrix1") = mat1, Named("matrix2") = mat2);
}
在 return
之后,我们想要在我们的 .cpp
文件中再调用这个 List
(或者直接读取 R 中的 list
类型均可),这时我们应该怎么做呢?
其实也非常简单,分两步即可:第一步创建 List
,第二步分别创建 List
中的内容,对象类型对应上即可,如下所示:
void TestFun(MatrixXd X, MatrixXd Y) {
Rcpp::List result_x, result_y;
result_x= ListFun(X);
result_y= ListFun(Y);
MatrixXd mat1_x = result_x["matrix1"];
MatrixXd mat1_y = result_y["matrix1"];
MatrixXd mat2_x = result_x["matrix2"];
MatrixXd mat2_y = result_y["matrix2"];
}
以上就是R语言学习初识Rcpp类型List的详细内容,更多关于R语言Rcpp初识List类型的资料请关注编程网其它相关文章!
--结束END--
本文标题: R语言学习初识Rcpp类型List
本文链接: https://lsjlt.com/news/156599.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0