https://github.com/cran/dse
Raw File
Tip revision: ec2cd7292be30e4d40bbb7ac3a2ede268dc7cf92 authored by Paul Gilbert on 02 May 2012, 06:27:58 UTC
version 2012.4-1
Tip revision: ec2cd72
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