[[Rcpp::export]]
| 499 | |
| 500 | // [[Rcpp::export]] |
| 501 | NumericMatrix runit_outer_lambda(NumericVector xx, NumericVector yy){ |
| 502 | NumericMatrix m = outer(xx, yy, [](double x, double y) { return x + y; }); |
| 503 | return m ; |
| 504 | } |
| 505 | |
| 506 | // [[Rcpp::export]] |
| 507 | List runit_row( NumericMatrix xx ){ |