How to generate all permutations of numbers if I have a number twice?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I cannot use perms([1 2 2]) because I dont want 1,2,2 twice.
0 Kommentare
Antworten (1)
Paolo
am 7 Jul. 2018
How about calling unique function after perms?
data = unique(perms([1 2 2]),'rows');
data =
1 2 2
2 1 2
2 2 1
0 Kommentare
Siehe auch
Kategorien
Mehr zu Discrete Math finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!