Re: [Rcpp-devel] file name changed in package

2014-05-22 Thread Dirk Eddelbuettel
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> | (

[Rcpp-devel] file name changed in package

2014-05-22 Thread Chaomei Lo
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