MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / runit_ppois

Function runit_ppois

inst/tinytest/cpp/rmath.cpp:519–522  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

517
518// [[Rcpp::export]]
519NumericVector runit_ppois( double x, double a ){
520 return NumericVector::create(R::ppois(x, a, 1, 0), R::ppois(log(x), a, 1, 1),
521 R::ppois(x, a, 0, 0), R::ppois(log(x), a, 0, 1));
522}
523
524// [[Rcpp::export]]
525NumericVector runit_qpois( double x, double a ){

Callers

nothing calls this directly

Calls 2

ppoisFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected