[[Rcpp::export]]
| 237 | |
| 238 | // [[Rcpp::export]] |
| 239 | List runit_qnorm_log( NumericVector xx ){ |
| 240 | return List::create( |
| 241 | _["lower"] = qnorm( xx, 0.0, 1.0, true, true), |
| 242 | _["upper"] = qnorm( xx, 0.0, 1.0, false, true)); |
| 243 | } |
| 244 | |
| 245 | // [[Rcpp::export]] |
| 246 | List runit_qpois_prob( NumericVector xx ){ |