Hi,
I am trying to translate an R code to cpp,
in R I have a structure like this:
A=list();
for(i in 1:n){
  A[[i]]=list();
  for(j in 1:m){
   A[[i]][[j]]=rep(0, m);
  }
}

I want to define this structre in Rcpp not to get it from R with a function
I really appreciate if you help me
Thanks



-- 
Fatemeh Riahi
_______________________________________________
Rcpp-devel mailing list
Rcpp-devel@lists.r-forge.r-project.org
https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel

Reply via email to