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

Method Q3

inst/include/Rcpp/stats/dpq/dpq.h:297–299  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

295 typedef double (*FunPtr)(double,double,double,double,int,int) ;
296
297 Q3( FunPtr ptr_, const VEC_TYPE& vec_, double p0_, double p1_, double p2_,
298 bool lower_tail = true, bool log_ = false ) :
299 ptr(ptr_), vec(vec_), p0(p0_), p1(p1_), p2(p2_), lower(lower_tail), log(log_) {}
300
301 inline double operator[]( int i) const {
302 return ptr( vec[i], p0, p1, p2, lower, log );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected