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

Function runit_plnorm

inst/tinytest/cpp/rmath.cpp:170–173  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

168
169// [[Rcpp::export]]
170NumericVector runit_plnorm( double x, double a, double b ){
171 return NumericVector::create(R::plnorm(x, a, b, 1, 0), R::plnorm(log(x), a, b, 1, 1),
172 R::plnorm(x, a, b, 0, 0), R::plnorm(log(x), a, b, 0, 1));
173}
174
175// [[Rcpp::export]]
176NumericVector runit_qlnorm( double x, double a, double b ){

Callers

nothing calls this directly

Calls 2

plnormFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected