Learn R Programming

vipor (version 0.4.7)

permute: Return all permutations of a vector

Description

Recursively generates all permutations of a vector. The result will be factorial(length(vals)) long so be careful with any longer vectors (e.g. longer than 10).

Usage

permute(vals)

Value

A list of vectors containing all permutation of the values

Arguments

vals

a vector of elements to be permuted

See Also

Examples

Run this code
permute(letters[1:3])
permute(1:5)

Run the code above in your browser using DataLab