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

Function runit_qlnorm

inst/tinytest/cpp/rmath.cpp:176–179  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

174
175// [[Rcpp::export]]
176NumericVector runit_qlnorm( double x, double a, double b ){
177 return NumericVector::create(R::qlnorm(x, a, b, 1, 0), R::qlnorm(log(x), a, b, 1, 1),
178 R::qlnorm(x, a, b, 0, 0), R::qlnorm(log(x), a, b, 0, 1));
179}
180
181// [[Rcpp::export]]
182NumericVector runit_rlnorm(double a, double b) {

Callers

nothing calls this directly

Calls 2

qlnormFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected