[[Rcpp::export]]
| 1180 | |
| 1181 | // [[Rcpp::export]] |
| 1182 | Rcpp::NumericVector lgl_row_means(Rcpp::LogicalMatrix x, bool na_rm = false) { |
| 1183 | return rowMeans(x, na_rm); |
| 1184 | } |
| 1185 | |
| 1186 | // [[Rcpp::export]] |
| 1187 | Rcpp::ComplexVector cx_row_means(Rcpp::ComplexMatrix x, bool na_rm = false) { |
nothing calls this directly
no test coverage detected