Rcpp Version 1.0.14
Loading...
Searching...
No Matches
convolve11_cpp.cpp
Go to the documentation of this file.
1// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 8 -*-
2
3// This version uses nona to indicate that xb does not contain any missing
4// value. This is the assumption that all other versions do.
5
6#include <Rcpp.h>
7using namespace Rcpp ;
8
9
11 NumericVector xa(a); int n_xa = xa.size() ;
12 NumericVector xb(b); int n_xb = xb.size() ;
13 NumericVector xab(n_xa + n_xb - 1,0.0);
14
15 Range r( 0, n_xb-1 );
16 for(int i=0; i<n_xa; i++, r++){
17 xab[ r ] += noNA(xa[i]) * noNA(xb) ;
18 }
19 return xab ;
20}
21
22#include "loopmacro.h"
24
#define RcppExport
Definition RcppCommon.h:141
RcppExport SEXP convolve11cpp(SEXP a, SEXP b)
#define LOOPMACRO_CPP(name)
Definition loopmacro.h:12
Rcpp API.
Definition algo.h:28
T as(SEXP x)
Definition as.h:151
sugar::Nona< RTYPE, NA, VECTOR > noNA(const Rcpp::VectorBase< RTYPE, NA, VECTOR > &vec)
Definition nona.h:74