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

Function runit_pgamma

inst/tinytest/cpp/stats.cpp:130–137  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

128
129// [[Rcpp::export]]
130List runit_pgamma( NumericVector xx ){
131 return List::create(
132 _["lowerNoLog"] = pgamma( xx, 2.0, 1.0 ),
133 _["lowerLog"] = pgamma( xx, 2.0, 1.0, true, true ),
134 _["upperNoLog"] = pgamma( xx, 2.0, 1.0, false ),
135 _["upperLog"] = pgamma( xx, 2.0, 1.0, false, true )
136 );
137}
138
139// [[Rcpp::export]]
140List runit_pnf( NumericVector xx ){

Callers

nothing calls this directly

Calls 1

pgammaFunction · 0.85

Tested by

no test coverage detected