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

Function runit_pnf

inst/tinytest/cpp/stats.cpp:140–147  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

138
139// [[Rcpp::export]]
140List runit_pnf( NumericVector xx ){
141 return List::create(
142 _["lowerNoLog"] = pnf( xx, 6.0, 8.0, 2.5, true ),
143 _["lowerLog"] = pnf( xx, 6.0, 8.0, 2.5, true, true ),
144 _["upperNoLog"] = pnf( xx, 6.0, 8.0, 2.5, false ),
145 _["upperLog"] = pnf( xx, 6.0, 8.0, 2.5, false, true )
146 );
147}
148
149// [[Rcpp::export]]
150List runit_pf( NumericVector xx ){

Callers

nothing calls this directly

Calls 1

pnfFunction · 0.85

Tested by

no test coverage detected