[[Rcpp::export]]
| 1259 | |
| 1260 | // [[Rcpp::export]] |
| 1261 | LogicalMatrix UpperTri(NumericMatrix x, bool diag = false) { |
| 1262 | return upper_tri(x, diag); |
| 1263 | } |
| 1264 | |
| 1265 | // [[Rcpp::export]] |
| 1266 | LogicalMatrix LowerTri(NumericMatrix x, bool diag = false) { |
nothing calls this directly
no test coverage detected