Created
          September 5, 2013 02:53 
        
      - 
      
- 
        Save rpietro/6445509 to your computer and use it in GitHub Desktop. 
    Rcpp examples from http://adv-r.had.co.nz/Rcpp.html
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | install.packages("Rcpp") | |
| install.packages("microbenchmark") | |
| library(Rcpp) | |
| library(microbenchmark) | |
| #------------------------------------------------------------------------------ | |
| oneR <- function() 1L | |
| one() | |
| cppFunction(' | |
| int oneC() { | |
| return 1; | |
| } | |
| ') | |
| oneC() | |
| #------------------------------------------------------------------------------ | |
| signR <- function(x) { | |
| if (x > 0) { | |
| 1 | |
| } else if (x == 0) { | |
| 0 | |
| } else { | |
| -1 | |
| } | |
| } | |
| system.time(singR(100)) | |
| cppFunction(' | |
| int signC(int x) { | |
| if (x > 0) { | |
| return 1; | |
| } else if (x == 0) { | |
| return 0; | |
| } else { | |
| return -1; | |
| } | |
| }' | |
| ) | |
| system.time(signC(100)) | |
| #------------------------------------------------------------------------------ | |
| sumR <- function(x) { | |
| total <- 0 | |
| for (i in seq_along(x)) { | |
| total <- total + x[i] | |
| } | |
| total | |
| } | |
| sumR(10^10) | |
| cppFunction(' | |
| double sumC(NumericVector x) { | |
| int n = x.size(); | |
| double total = 0; | |
| for(int i = 0; i < n; ++i) { | |
| total += x[i]; | |
| } | |
| return total; | |
| } | |
| ') | |
| #------------------------------------------------------------------------------ | |
| x <- runif(1e3) | |
| microbenchmark( | |
| sum(x), | |
| sumR(x), | |
| sumC(x) | |
| ) | |
| #------------------------------------------------------------------------------ | |
| pdistR <- function(x, ys) { | |
| sqrt( (x - ys) ^ 2 ) | |
| } | |
| cppFunction(' | |
| NumericVector pdistC(double x, NumericVector ys) { | |
| int n = ys.size(); | |
| NumericVector out(n); | |
| for(int i = 0; i < n; ++i) { | |
| out[i] = sqrt(pow(ys[i] - x, 2.0)); | |
| } | |
| return out; | |
| } | |
| ') | |
| #------------------------------------------------------------------------------ | |
| cppFunction(' | |
| NumericVector rowSumsC(NumericMatrix x) { | |
| int nrow = x.nrow(), ncol = x.ncol(); | |
| NumericVector out(nrow); | |
| for (int i = 0; i < nrow; i++) { | |
| double total = 0; | |
| for (int j = 0; j < ncol; j++) { | |
| total += x(i, j); | |
| } | |
| out[i] = total; | |
| } | |
| return out; | |
| } | |
| ') | |
| x <- matrix(sample(100), 10) | |
| rowSums(x) | |
| rowSumsC(x) | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment