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

Function runit_qnorm

inst/tinytest/cpp/rmath.cpp:40–43  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

38
39// [[Rcpp::export]]
40NumericVector runit_qnorm( double x, double a, double b ){
41 return NumericVector::create(R::qnorm(x, a, b, 1, 0), R::qnorm(log(x), a, b, 1, 1),
42 R::qnorm(x, a, b, 0, 0), R::qnorm(log(x), a, b, 0, 1));
43}
44
45// [[Rcpp::export]]
46NumericVector runit_rnorm( double a, double b ){

Callers

nothing calls this directly

Calls 2

qnormFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected