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

Function runit_pweibull

inst/tinytest/cpp/rmath.cpp:552–555  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

550
551// [[Rcpp::export]]
552NumericVector runit_pweibull( double x, double a, double b ){
553 return NumericVector::create(R::pweibull(x, a, b, 1, 0), R::pweibull(log(x), a, b, 1, 1),
554 R::pweibull(x, a, b, 0, 0), R::pweibull(log(x), a, b, 0, 1));
555}
556
557// [[Rcpp::export]]
558NumericVector runit_qweibull( double x, double a, double b ){

Callers

nothing calls this directly

Calls 2

pweibullFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected