Sent from Mail Master___
Rcpp-devel mailing list
[email protected]
https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel
Hi Rcpp experts, The CRAN maintainers inform me that when testing one of my
packages under
g++ -std=gnu++14 (logs with gcc 5.3)
that the following code snippet,
IntegerVector dpr = diff(pr); /* pr is an Rcpp::IntegerVector */
icolvec diffpersons(dpr.begin(), nc - 1, false);
generates the follow
Thr cpp11 plugin as described in this article
http://gallery.rcpp.org/articles/first-steps-with-C++11/
gives an error regarding an unknown option when run on Windows with
the current version of Rtools (Rtools version 3.1.0.1942) and Rcpp
0.11.1:
The problem seems to be that Rcpp uses -std=c+
Thanks for posting. Just for the record, and just like the main R lists, we
prefer posts with full (correct) names and some sort of affiliation where
available.
You do know who you are dealing with when you get reply from me; it seems
polite to offer the same.
On 17 October 2013 at 15:23, str
Dear rcpp-devel,
I have been working for some time on an R package to perform simulation and
inference for stochastic differential equations (SDEs). Due to a large
number of serial calculations, I have achieved a speed-up of several orders
of magnitude by writing most of the code in C++. However
Hi Jules,
On 9 July 2013 at 22:16, Jules Archer wrote:
| Hi,
|
| I've been trying to integrate the mathGL plotting library into R with Rcpp,
| with the ultimate goal of rendering in the browser. So far, I've been
| successful with creating simple plotting test functions, compile with
sourceCpp
Hi,
I've been trying to integrate the mathGL plotting library into R with Rcpp,
with the ultimate goal of rendering in the browser. So far, I've been
successful with creating simple plotting test functions, compile with
sourceCpp("myplotter.cpp") and output *.png and *.json files for browser 3