[[Rcpp::export]]
| 545 | |
| 546 | // [[Rcpp::export]] |
| 547 | NumericVector runit_dweibull( double x, double a, double b ){ |
| 548 | return NumericVector::create(R::dweibull(x, a, b, 0), R::dweibull(x, a, b, 1)); |
| 549 | } |
| 550 | |
| 551 | // [[Rcpp::export]] |
| 552 | NumericVector runit_pweibull( double x, double a, double b ){ |
nothing calls this directly
no test coverage detected