我使用 Rcpp(尤其是 Rcpp Armadillo)来执行一个方法,该方法返回几个大矩阵,例如大小为 10000*10000。如何保存这些矩阵以在 R 环境中使用它们。假设我在 Rcpp 中的代码如下所示:
list Output (20000);
for( int i(0);i<20000;++1 ){
...
...
// Suppose that the previous lines allow me to compute a matrix Gi of size 10000*10000
Output(i)=Gi;
}
return Output;
我编程的方式非常昂贵,需要足够的内存。但我需要 20000 矩阵来计算 R 环境中的估计器。如何保存矩阵?我不知道 bigmatrix 包是否可以帮助我。
最好的,