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

Function runit_dbeta

inst/tinytest/cpp/stats.cpp:26–31  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

24
25// [[Rcpp::export]]
26List runit_dbeta(NumericVector xx, double aa, double bb){
27 return List::create(
28 _["NoLog"] = dbeta( xx, aa, bb),
29 _["Log"] = dbeta( xx, aa, bb, true )
30 );
31}
32
33// [[Rcpp::export]]
34List runit_dbinom( IntegerVector xx ){

Callers

nothing calls this directly

Calls 1

dbetaFunction · 0.85

Tested by

no test coverage detected