Revision d50cda4811eb3cdb8d2ce9e01ddb5e07d4a8c24f authored by HwB on 11 September 2013, 00:00:00 UTC, committed by Gabor Csardi on 11 September 2013, 00:00:00 UTC
1 parent 10ae2bb
Raw File
combs.Rd
\name{combs}
\alias{combs}
\title{
Generate Combinations
}
\description{
Generates all combinations of length \code{m} of a vector \code{a}.
}
\usage{
combs(a, m)
}
\arguments{
  \item{a}{numeric vector of some length \code{n}}
  \item{m}{integer with \code{0 <= m <= n}}
}
\details{
  \code{combs} generates combinations of length \code{n} of the elements
  of the vector \code{a}.
}
\value{
  matrix representing combinations of the elements of \code{a}
}
\seealso{
\code{\link{perms}}, \code{\link{randcomb}}
}
\examples{
combs(seq(2, 10, by=2), m = 3)
}
\keyword{ arith }
back to top