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

Function runit_pcauchy

inst/tinytest/cpp/stats.cpp:110–117  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

108
109// [[Rcpp::export]]
110List runit_pcauchy( NumericVector xx, double loc, double scl){
111 return List::create(
112 _["lowerNoLog"] = pcauchy(xx, loc, scl ),
113 _["lowerLog"] = pcauchy(xx, loc, scl, true, true ),
114 _["upperNoLog"] = pcauchy(xx, loc, scl, false ),
115 _["upperLog"] = pcauchy(xx, loc, scl, false, true )
116 );
117}
118
119// [[Rcpp::export]]
120List runit_punif( NumericVector xx ){

Callers

nothing calls this directly

Calls 1

pcauchyFunction · 0.85

Tested by

no test coverage detected