[[Rcpp::export]]
| 1170 | |
| 1171 | // [[Rcpp::export]] |
| 1172 | Rcpp::NumericVector dbl_row_means(Rcpp::NumericMatrix x, bool na_rm = false) { |
| 1173 | return rowMeans(x, na_rm); |
| 1174 | } |
| 1175 | |
| 1176 | // [[Rcpp::export]] |
| 1177 | Rcpp::NumericVector int_row_means(Rcpp::IntegerMatrix x, bool na_rm = false) { |
nothing calls this directly
no test coverage detected