https://github.com/cran/dse
Raw File
Tip revision: 255d6b0f2bb198b3fdf1ac04a994762b381b07a7 authored by Paul Gilbert on 26 February 2020, 06:10:02 UTC
version 2020.2-1
Tip revision: 255d6b0
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