[Rcpp-commits] r1681 - 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 20:13:15 CEST 2010


Author: romain
Date: 2010-06-23 20:13:15 +0200 (Wed, 23 Jun 2010)
New Revision: 1681

Added:
   pkg/Rcpp/inst/include/Rcpp/sugar/functions/floor.h
Modified:
   pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw
   pkg/Rcpp/inst/include/Rcpp/sugar/functions/functions.h
   pkg/Rcpp/inst/unitTests/runit.sugar.exp.R
Log:
sugar/floor

Modified: pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw
===================================================================
--- pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw	2010-06-23 17:55:18 UTC (rev 1680)
+++ pkg/Rcpp/inst/doc/Rcpp-sugar/Rcpp-sugar.Rnw	2010-06-23 18:13:15 UTC (rev 1681)
@@ -450,8 +450,8 @@
 @
 
 \subsubsection{exp}
+\subsubsection{floor}
 
-
 \section{Performance}
 \label{sec:performance}
 

Added: pkg/Rcpp/inst/include/Rcpp/sugar/functions/floor.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/sugar/functions/floor.h	                        (rev 0)
+++ pkg/Rcpp/inst/include/Rcpp/sugar/functions/floor.h	2010-06-23 18:13:15 UTC (rev 1681)
@@ -0,0 +1,79 @@
+// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 8 -*-
+//
+// floor.h: Rcpp R/C++ interface class library -- floor
+//
+// 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__floor_h
+#define Rcpp__sugar__floor_h
+
+namespace Rcpp{
+namespace sugar{
+
+template <bool NA, int RTYPE>
+class floor__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 : floor(x) ;
+	}
+} ;
+
+template <int RTYPE>
+class floor__impl<false,RTYPE>{
+public:
+	typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ;
+	static inline double get( STORAGE x){
+		return floor(x) ;
+	}
+} ;
+
+	
+template <int RTYPE, bool NA, typename T>
+class Floor : public Rcpp::VectorBase< REALSXP ,NA, Floor<RTYPE,NA,T> > {
+public:
+	typedef typename Rcpp::VectorBase<RTYPE,NA,T> VEC_TYPE ;
+	typedef typename Rcpp::traits::storage_type<RTYPE>::type STORAGE ;
+	
+	Floor( const VEC_TYPE& object_ ) : object(object_){}
+	
+	inline double operator[]( int i ) const {
+		return floor__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::Floor<INTSXP,NA,T> floor( const VectorBase<INTSXP,NA,T>& t){
+	return sugar::Floor<INTSXP,NA,T>( t ) ;
+}
+
+template <bool NA, typename T>
+inline sugar::Floor<REALSXP,NA,T> floor( const VectorBase<REALSXP,NA,T>& t){
+	return sugar::Floor<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:55:18 UTC (rev 1680)
+++ pkg/Rcpp/inst/include/Rcpp/sugar/functions/functions.h	2010-06-23 18:13:15 UTC (rev 1681)
@@ -35,5 +35,6 @@
 #include <Rcpp/sugar/functions/diff.h>
 #include <Rcpp/sugar/functions/abs.h>
 #include <Rcpp/sugar/functions/exp.h>
+#include <Rcpp/sugar/functions/floor.h>
 
 #endif

Modified: pkg/Rcpp/inst/unitTests/runit.sugar.exp.R
===================================================================
--- pkg/Rcpp/inst/unitTests/runit.sugar.exp.R	2010-06-23 17:55:18 UTC (rev 1680)
+++ pkg/Rcpp/inst/unitTests/runit.sugar.exp.R	2010-06-23 18:13:15 UTC (rev 1681)
@@ -32,3 +32,18 @@
 	checkEquals( fx(x,y) , list( exp(x), exp(y) ) )
 }
 
+test.sugar.floor <- function( ){
+
+	fx <- cxxfunction( signature( x = "numeric", y = "integer" ), '
+	
+		NumericVector xx(x) ;
+		IntegerVector yy(y) ;
+		
+		return List::create( floor(xx), floor(yy) ) ;
+	', plugin = "Rcpp" )
+	
+	x <- rnorm(10)
+	y <- -10:10
+	checkEquals( fx(x,y) , list( floor(x), floor(y) ) )
+}
+



More information about the Rcpp-commits mailing list