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

Function runit_pchisq

inst/tinytest/cpp/rmath.cpp:203–206  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

201
202// [[Rcpp::export]]
203NumericVector runit_pchisq( double x, double a ){
204 return NumericVector::create(R::pchisq(x, a, 1, 0), R::pchisq(log(x), a, 1, 1),
205 R::pchisq(x, a, 0, 0), R::pchisq(log(x), a, 0, 1));
206}
207
208// [[Rcpp::export]]
209NumericVector runit_qchisq( double x, double a ){

Callers

nothing calls this directly

Calls 2

pchisqFunction · 0.85
logFunction · 0.50

Tested by

no test coverage detected