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

Function runit_qbeta

inst/tinytest/cpp/rmath.cpp:142–145  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

140
141// [[Rcpp::export]]
142NumericVector runit_qbeta( double x, double a, double b ){
143 return NumericVector::create(R::qbeta(x, a, b, 1, 0), R::qbeta(log(x), a, b, 1, 1),
144 R::qbeta(x, a, b, 0, 0), R::qbeta(log(x), a, b, 0, 1));
145}
146
147// [[Rcpp::export]]
148NumericVector runit_rbeta(double a, double b) {

Callers

nothing calls this directly

Calls 2

qbetaFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected