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

Function runit_qgamma

inst/tinytest/cpp/rmath.cpp:108–111  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

106
107// [[Rcpp::export]]
108NumericVector runit_qgamma( double x, double a, double b ){
109 return NumericVector::create(R::qgamma(x, a, b, 1, 0), R::qgamma(log(x), a, b, 1, 1),
110 R::qgamma(x, a, b, 0, 0), R::qgamma(log(x), a, b, 0, 1));
111}
112
113// [[Rcpp::export]]
114NumericVector runit_rgamma(double a, double b) {

Callers

nothing calls this directly

Calls 2

qgammaFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected