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

Function runit_qweibull

inst/tinytest/cpp/rmath.cpp:558–561  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

556
557// [[Rcpp::export]]
558NumericVector runit_qweibull( double x, double a, double b ){
559 return NumericVector::create(R::qweibull(x, a, b, 1, 0), R::qweibull(log(x), a, b, 1, 1),
560 R::qweibull(x, a, b, 0, 0), R::qweibull(log(x), a, b, 0, 1));
561}
562
563// [[Rcpp::export]]
564NumericVector runit_rweibull(double a, double b) {

Callers

nothing calls this directly

Calls 2

qweibullFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected