[Rcpp-commits] r1680 - in pkg/Rcpp/inst: doc/Rcpp-sugar include/Rcpp/sugar/functions unitTests
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Wed Jun 23 19:55:18 CEST 2010
Author: romain
Date: 2010-06-23 19:55:18 +0200 (Wed, 23 Jun 2010)
New Revision: 1680
Added:
pkg/Rcpp/inst/include/Rcpp/sugar/functions/exp.h
pkg/Rcpp/inst/unitTests/runit.sugar.exp.R
Modified:
pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw
pkg/Rcpp/inst/include/Rcpp/sugar/functions/functions.h
Log:
sugar/exp
Modified: pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw
===================================================================
--- pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw 2010-06-23 17:53:41 UTC (rev 1679)
+++ pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw 2010-06-23 17:55:18 UTC (rev 1680)
@@ -449,7 +449,9 @@
abs( xx )
@
+\subsubsection{exp}
+
\section{Performance}
\label{sec:performance}
Added: pkg/Rcpp/inst/include/Rcpp/sugar/functions/exp.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/sugar/functions/exp.h (rev 0)
+++ pkg/Rcpp/inst/include/Rcpp/sugar/functions/exp.h 2010-06-23 17:55:18 UTC (rev 1680)
@@ -0,0 +1,79 @@
+// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 8 -*-
+//
+// exp.h: Rcpp R/C++ interface class library -- exp
+//
+// Copyright (C) 2010 Dirk Eddelbuettel and Romain Francois
+//
+// This file is part of Rcpp.
+//
+// Rcpp is free software: you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 2 of the License, or
+// (at your option) any later version.
+//
+// Rcpp is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
+
+#ifndef Rcpp__sugar__exp_h
+#define Rcpp__sugar__exp_h
+
+namespace Rcpp{
+namespace sugar{
+
+template <bool NA, int RTYPE>
+class exp__impl{
+public:
+ typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ;
+ static inline double get( STORAGE x){
+ return Rcpp::traits::is_na<RTYPE>(x) ? NA_INTEGER : exp(x) ;
+ }
+} ;
+
+template <int RTYPE>
+class exp__impl<false,RTYPE>{
+public:
+ typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ;
+ static inline double get( STORAGE x){
+ return exp(x) ;
+ }
+} ;
+
+
+template <int RTYPE, bool NA, typename T>
+class Exp : public Rcpp::VectorBase< REALSXP ,NA, Exp<RTYPE,NA,T> > {
+public:
+ typedef typename Rcpp::VectorBase<RTYPE,NA,T> VEC_TYPE ;
+ typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ;
+
+ Exp( const VEC_TYPE& object_ ) : object(object_){}
+
+ inline double operator[]( int i ) const {
+ return exp__impl<NA,RTYPE>::get( object[i] );
+ }
+ inline int size() const { return object.size() ; }
+
+private:
+ const VEC_TYPE& object ;
+} ;
+
+} // sugar
+
+template <bool NA, typename T>
+inline sugar::Exp<INTSXP,NA,T> exp( const VectorBase<INTSXP,NA,T>& t){
+ return sugar::Exp<INTSXP,NA,T>( t ) ;
+}
+
+template <bool NA, typename T>
+inline sugar::Exp<REALSXP,NA,T> exp( const VectorBase<REALSXP,NA,T>& t){
+ return sugar::Exp<REALSXP,NA,T>( t ) ;
+}
+
+
+} // Rcpp
+#endif
+
Modified: pkg/Rcpp/inst/include/Rcpp/sugar/functions/functions.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/sugar/functions/functions.h 2010-06-23 17:53:41 UTC (rev 1679)
+++ pkg/Rcpp/inst/include/Rcpp/sugar/functions/functions.h 2010-06-23 17:55:18 UTC (rev 1680)
@@ -34,5 +34,6 @@
#include <Rcpp/sugar/functions/sign.h>
#include <Rcpp/sugar/functions/diff.h>
#include <Rcpp/sugar/functions/abs.h>
+#include <Rcpp/sugar/functions/exp.h>
#endif
Added: pkg/Rcpp/inst/unitTests/runit.sugar.exp.R
===================================================================
--- pkg/Rcpp/inst/unitTests/runit.sugar.exp.R (rev 0)
+++ pkg/Rcpp/inst/unitTests/runit.sugar.exp.R 2010-06-23 17:55:18 UTC (rev 1680)
@@ -0,0 +1,34 @@
+#!/usr/bin/r -t
+#
+# Copyright (C) 2010 Dirk Eddelbuettel and Romain Francois
+#
+# This file is part of Rcpp.
+#
+# Rcpp is free software: you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+#
+# Rcpp is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
+
+test.sugar.exp <- function( ){
+
+ fx <- cxxfunction( signature( x = "numeric", y = "integer" ), '
+
+ NumericVector xx(x) ;
+ IntegerVector yy(y) ;
+
+ return List::create( exp(xx), exp(yy) ) ;
+ ', plugin = "Rcpp" )
+
+ x <- rnorm(10)
+ y <- -10:10
+ checkEquals( fx(x,y) , list( exp(x), exp(y) ) )
+}
+
More information about the Rcpp-commits
mailing list