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

Function runit_pnorm

inst/tinytest/cpp/stats.cpp:180–187  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

178
179// [[Rcpp::export]]
180List runit_pnorm( NumericVector xx ){
181 return List::create(
182 _["lowerNoLog"] = pnorm( xx, 0.0, 1.0 ),
183 _["lowerLog"] = pnorm( xx, 0.0, 1.0, true, true ),
184 _["upperNoLog"] = pnorm( xx, 0.0, 1.0, false ),
185 _["upperLog"] = pnorm( xx, 0.0, 1.0, false, true )
186 );
187}
188
189// [[Rcpp::export]]
190List runit_ppois( NumericVector xx){

Callers

nothing calls this directly

Calls 1

pnormFunction · 0.85

Tested by

no test coverage detected