Re: [R] Armadillo error in R extension

2013-02-02 Thread Simon Zehnder
Dear Michael, during the last days of programming I came across RcppArmadillo (Rcpp) and for my kind of work this is indeed pretty interesting. So, I will take a closer look today what it is about and how it works. As a C++ programmer though, I am still interested why compilation of my package

Re: [R] Armadillo error in R extension

2013-02-01 Thread Dirk Eddelbuettel
On 1 February 2013 at 21:38, Simon Zehnder wrote: | Is there anyway with some experience in using armadillo in R C++ extensions? Yes, sure -- we wrote (and use) a package RcppArmadillo that provides very easy access to Armadillo via Rcpp. | My problem is the following: | | I programmed a funct

Re: [R] Armadillo error in R extension

2013-02-01 Thread Michael Weylandt
Look up the terribly wonderful RcppArmadillo package. MW On Feb 1, 2013, at 8:38 PM, Simon Zehnder wrote: > Is there anyway with some experience in using armadillo in R C++ extensions? > > My problem is the following: > > I programmed a function in a header looking like > > #include > > i

[R] Armadillo error in R extension

2013-02-01 Thread Simon Zehnder
Is there anyway with some experience in using armadillo in R C++ extensions? My problem is the following: I programmed a function in a header looking like #include inline arma::vec foo(input) { ... do something return an arma::vec object } compiling this via R CMD I