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

Function runit_pnf

inst/tinytest/cpp/rmath.cpp:637–640  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

635
636// [[Rcpp::export]]
637NumericVector runit_pnf( double x, double a, double b, double c ){
638 return NumericVector::create(R::pnf(x, a, b, c, 1, 0), R::pnf(log(x), a, b, c, 1, 1),
639 R::pnf(x, a, b, c, 0, 0), R::pnf(log(x), a, b, c, 0, 1));
640}
641
642// [[Rcpp::export]]
643NumericVector runit_qnf( double x, double a, double b, double c ){

Callers

nothing calls this directly

Calls 2

pnfFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected