-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
51 lines (48 loc) · 1.46 KB
/
RcppExports.cpp
File metadata and controls
51 lines (48 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// This file was generated by Rcpp::compileAttributes
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
// rcpp_hello
List rcpp_hello();
RcppExport SEXP transVis_rcpp_hello() {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
__result = Rcpp::wrap(rcpp_hello());
return __result;
END_RCPP
}
// iterative_change
NumericVector iterative_change(NumericVector df1, NumericVector df2);
RcppExport SEXP transVis_iterative_change(SEXP df1SEXP, SEXP df2SEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< NumericVector >::type df1(df1SEXP);
Rcpp::traits::input_parameter< NumericVector >::type df2(df2SEXP);
__result = Rcpp::wrap(iterative_change(df1, df2));
return __result;
END_RCPP
}
// my_cumsum
NumericVector my_cumsum(NumericVector vec1);
RcppExport SEXP transVis_my_cumsum(SEXP vec1SEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< NumericVector >::type vec1(vec1SEXP);
__result = Rcpp::wrap(my_cumsum(vec1));
return __result;
END_RCPP
}
// circle_area
NumericVector circle_area(NumericVector vec1);
RcppExport SEXP transVis_circle_area(SEXP vec1SEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< NumericVector >::type vec1(vec1SEXP);
__result = Rcpp::wrap(circle_area(vec1));
return __result;
END_RCPP
}