Member of the matrix class.
c = perms(a)
Computes all permutations of the input elements.
| Name | Description |
| a | Specifies the input elements for which you want to compute permutations. a is a vector and must have fewer than 15 elements. |
| Name | Description |
| c | Returns all permutations of the elements in a. c is a matrix with a! rows. |
C = perms('abc')
D = perms([3:6])