On 22 May 2014 at 15:38, Chaomei Lo wrote:
| Hi, Dirk,
|
| I have created R packages using Makevars and it works pretty good for me. I am
| able to convert from a Rcpp::NumericVector to std::vector as in below.
|
| NumericVector col_cts = buildMatrix(Xr);
|
| vector col_counts = Rcpp::as>
| (
Hi, Dirk,
I have created R packages using Makevars and it works pretty good for me.
I am able to convert from a Rcpp::NumericVector to std::vector as in below.
*NumericVector col_cts = buildMatrix(Xr);vector
col_counts = Rcpp::as>(col_cts); *
Now I am having a problem with an application invo