How to Compute All Combinations of Vectors of Length 6 Made up of Numbers -1 and 1?

조회 수: 6 (최근 30일)
For example, If I have two numbers [-1 1] in a some random order in a vector of length 6, how can I compute all 64 combinations of these numbers such that a result is a matrix of 64x6 dimension?
To make my question more clear, result would look something like this:
A = [-1 1 -1 1 -1 1; 1 -1 1 1 -1 -1 1; -1 1 -1 -1 1 -1; 1 -1 -1 1 -1 -1; etc.]
with all 64 possible combinations. Since there are 64 combinations, a resulting matrix needs to have 64 rows and 6 columns since every row (vector) has 6 numbers.
  댓글 수: 2
Dario Miric
Dario Miric 2022년 1월 28일
편집: Dario Miric 2022년 1월 28일
Yes, since I only have two different values, I will have a lot of equal combinations (64 - 15 = 49). Do you know if there is a function to do this?

댓글을 달려면 로그인하십시오.

채택된 답변

Torsten
Torsten 2022년 1월 28일
Brute force would be
unique(perms(A))
Maybe there is a better solution.
  댓글 수: 5
Torsten
Torsten 2022년 1월 28일
If you have a fixed vector v made up of -1 and 1 and you want to get all combinations of the elements of this vector, you get 6! permutations where many of them will repeat.
If you want all possible vectors of length 6 made up of the numbers -1 and 1, you get 64 such vectors.
I think the last thing is what you want, and permn will do this for you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by