How to generate all permutations of numbers if I have a number twice?

2 views (last 30 days)
I cannot use perms([1 2 2]) because I dont want 1,2,2 twice.

Answers (1)

Paolo
Paolo on 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

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!