[[Rcpp::export]]
| 370 | |
| 371 | // [[Rcpp::export]] |
| 372 | NumericMatrix matrix_scalar_divide4(const NumericMatrix & x, double y) { |
| 373 | NumericMatrix z(x.rows(), x.cols()); |
| 374 | z = y / x; |
| 375 | return x; |
| 376 | } |
| 377 | |
| 378 | // 24 October 2016 |
| 379 | // eye, ones, and zeros static member functions |