https://github.com/cran/dse
Raw File
Tip revision: b664d7c56ebd871058baf87fdcb5b3e2a146598e authored by Paul Gilbert on 23 March 2011, 09:30:21 UTC
version 2011.3-1
Tip revision: b664d7c
permute.Rd
\name{permute}
\alias{permute}
\title{Permute}
\description{
    Return matrix with rows indicating all possible selections of
    elements from seq(M). 0 in the result indicates omit. 
    M is usually a positive integer. M=0 gives NULL.
    Neg. M give -permute(abs(M)).
}
\usage{
    permute(M)
}
\arguments{
    \item{M}{An integer.}
}
\value{A matrix.}
\examples{
    permute(4)
}
\concept{DSE}
\keyword{ts}

back to top