Learn R Programming

mixAK (version 5.3)

generatePermutations: Generate all permutations of (1, ..., K)

Description

It generates a matrix containing all permutations of (1, ..., K).

Usage

generatePermutations(K)

Arguments

K

integer value of \(K\).

Value

A matrix of dimension \(K! \times K\) with generated permutations in rows.

Examples

Run this code
# NOT RUN {
generatePermutations(1)
generatePermutations(2)
generatePermutations(3)
generatePermutations(4)
# }

Run the code above in your browser using DataLab