Rcpp Version 1.0.14
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Variables
_
b
c
d
f
g
k
m
n
r
t
y
Typedefs
c
d
e
f
g
i
l
n
p
r
s
t
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
_
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
Enumerator
r
v
Related Symbols
o
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
x
y
Functions
a
c
d
e
f
g
i
l
m
o
p
r
s
Variables
Typedefs
Macros
_
a
b
c
d
e
g
h
i
j
l
m
n
o
r
s
t
u
v
y
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerator
Friends
Macros
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
>
7
using namespace
Rcpp
;
8
9
10
RcppExport
SEXP
convolve11cpp
(
SEXP
a,
SEXP
b) {
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
}
10
RcppExport
SEXP
convolve11cpp
(
SEXP
a,
SEXP
b) {
…
}
21
22
#include "
loopmacro.h
"
23
LOOPMACRO_CPP
(
convolve11cpp
)
24
RcppExport
#define RcppExport
Definition
RcppCommon.h:141
Rcpp.h
Rcpp::Range
Definition
Range.h:27
Rcpp::Vector
Definition
Vector.h:35
convolve11cpp
RcppExport SEXP convolve11cpp(SEXP a, SEXP b)
Definition
convolve11_cpp.cpp:10
loopmacro.h
LOOPMACRO_CPP
#define LOOPMACRO_CPP(name)
Definition
loopmacro.h:12
Rcpp
Rcpp API.
Definition
algo.h:28
Rcpp::as
T as(SEXP x)
Definition
as.h:151
Rcpp::noNA
sugar::Nona< RTYPE, NA, VECTOR > noNA(const Rcpp::VectorBase< RTYPE, NA, VECTOR > &vec)
Definition
nona.h:74
inst
examples
ConvolveBenchmarks
convolve11_cpp.cpp
Generated on Sun Jan 12 2025 11:21:42 for Rcpp Version 1.0.14 by
1.9.8