[[Rcpp::export]]
| 493 | |
| 494 | // [[Rcpp::export]] |
| 495 | NumericMatrix runit_outer( NumericVector xx, NumericVector yy){ |
| 496 | NumericMatrix m = outer( xx, yy, std::plus<double>() ) ; |
| 497 | return m ; |
| 498 | } |
| 499 | |
| 500 | // [[Rcpp::export]] |
| 501 | NumericMatrix runit_outer_lambda(NumericVector xx, NumericVector yy){ |