[[Rcpp::export]]
| 180 | |
| 181 | // [[Rcpp::export]] |
| 182 | NumericVector runit_rlnorm(double a, double b) { |
| 183 | NumericVector o(5); |
| 184 | for (int i = 0; i < o.size(); i++) { |
| 185 | o[i] = R::rlnorm(a, b); |
| 186 | } |
| 187 | return o; |
| 188 | } |
| 189 | |
| 190 | // [[Rcpp::export]] |
| 191 | NumericVector runit_rlnorm_sugar(double a, double b) { |