nextperm

Outputs the next permutation of the ordered tuple x.
972 download
Aggiornato 12 ago 2010

Visualizza la licenza

Using lexical order on the set {1, 2, ..., N}, outputs the next permutation of the ordered tuple x. You have exhausted the list when All(nextperm(x,N) == x) is TRUE.

For example
nextperm([1 5 4], 5) returns [2 1 3]
nextperm([2 1 3], 5) returns [2 1 4]
nextperm([5 4 3], 5) returns [5 4 3]

Cita come

Steven Gregory (2026). nextperm (https://it.mathworks.com/matlabcentral/fileexchange/22692-nextperm), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2006a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Linear Algebra in Help Center e MATLAB Answers
Versione Pubblicato Note della release
1.1.0.0

Made a small change in the description of the function.

1.0.0.0