% Generated by roxygen2: do not edit by hand % Please edit documentation in R/util.R \name{elem.pairs} \alias{elem.pairs} \title{Creates a (numeric) matrix where each column contains an element to element matching.} \usage{ elem.pairs(elements) } \arguments{ \item{elements}{numeric vector of elements to match} } \value{ matrix of size `(2, n * (n - 1) / 2)` for a argument of lenght `n`. } \description{ Creates a (numeric) matrix where each column contains an element to element matching. } \examples{ elem.pairs(seq.int(2, 5)) } \keyword{internal}