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

Function runit_rlogis

inst/tinytest/cpp/rmath.cpp:597–603  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

595
596// [[Rcpp::export]]
597NumericVector runit_rlogis(double a, double b) {
598 NumericVector o(5);
599 for(int i = 0; i < o.size(); i++) {
600 o[i] = R::rlogis(a, b);
601 }
602 return o;
603}
604
605// [[Rcpp::export]]
606NumericVector runit_rlogis_sugar(double a, double b) {

Callers

nothing calls this directly

Calls 2

rlogisFunction · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected