Rcpp Version 1.0.9
piSugar.cpp
Go to the documentation of this file.
1
2
#include <
Rcpp.h
>
3
4
using namespace
Rcpp
;
5
6
// [[Rcpp::export]]
7
double
piSugar
(
const
int
N) {
8
NumericVector
x =
runif
(N);
9
NumericVector
y =
runif
(N);
10
NumericVector
d =
sqrt
(x*x + y*y);
11
return
4.0 *
sum
(d < 1.0) / N;
12
}
Rcpp.h
Rcpp::Vector
Definition:
Vector.h:36
Rcpp::algorithm::sqrt
void sqrt(InputIterator begin, InputIterator end, OutputIterator out)
Definition:
algorithm.h:479
Rcpp
Rcpp API.
Definition:
algo.h:28
Rcpp::sum
sugar::Sum< INTSXP, NA, T > sum(const VectorBase< INTSXP, NA, T > &t)
Definition:
sum.h:98
Rcpp::runif
NumericVector runif(int n, double min, double max)
Definition:
random.h:295
piSugar
double piSugar(const int N)
Definition:
piSugar.cpp:7
inst
examples
Misc
piSugar.cpp
Generated on Sat Jul 9 2022 09:14:51 for Rcpp Version 1.0.9 by
1.9.1