permute: Permute a vector.

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Permute the values contained in a vector.

Usage

1
 permute(x)

Arguments

x

The vector of values that are to be permuted.

Details

permute calculates the number of permutations and creates a matrix with that number of rows. It fills the first column with the elements of x in groups large enough to cover the permutations of a vector with one less value. It then fills the remaining columns by calling itself with all values except the one in the first row of the current block. If x has only two values, it returns the trivial permutation of x and its reverse.

Value

A matrix in which each row is a permutation of the values in x.

Author(s)

Jim Lemon

See Also

fillArows, fillArow

Examples

1
 permute(c(5,8,3,9))

crank documentation built on May 1, 2019, 9:39 p.m.

Related to permute in crank...