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

Function runit_dgamma

inst/tinytest/cpp/stats.cpp:54–60  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

52
53// [[Rcpp::export]]
54List runit_dgamma( NumericVector xx ){
55 return List::create(
56 _["NoLog"] = dgamma( xx, 1.0, 1.0),
57 _["Log"] = dgamma( xx, 1.0, 1.0, true ),
58 _["Log_noRate"] = dgamma( xx, 1.0, true )
59 );
60}
61
62// [[Rcpp::export]]
63List runit_dpois( IntegerVector xx ){

Callers

nothing calls this directly

Calls 1

dgammaFunction · 0.85

Tested by

no test coverage detected