[[Rcpp::export]]
| 230 | |
| 231 | // [[Rcpp::export]] |
| 232 | List runit_qnorm_prob( NumericVector xx ){ |
| 233 | return List::create( |
| 234 | _["lower"] = qnorm( xx, 0.0, 1.0 ), |
| 235 | _["upper"] = qnorm( xx, 0.0, 1.0, false)); |
| 236 | } |
| 237 | |
| 238 | // [[Rcpp::export]] |
| 239 | List runit_qnorm_log( NumericVector xx ){ |