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

Function runit_pnbeta

inst/tinytest/cpp/rmath.cpp:618–621  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

616
617// [[Rcpp::export]]
618NumericVector runit_pnbeta( double x, double a, double b, double c ){
619 return NumericVector::create(R::pnbeta(x, a, b, c, 1, 0), R::pnbeta(log(x), a, b, c, 1, 1),
620 R::pnbeta(x, a, b, c, 0, 0), R::pnbeta(log(x), a, b, c, 0, 1));
621}
622
623// [[Rcpp::export]]
624NumericVector runit_qnbeta( double x, double a, double b, double c ){

Callers

nothing calls this directly

Calls 2

pnbetaFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected