Generating a select set of permutations

조회 수: 2 (최근 30일)
Mason Dyess
Mason Dyess 2019년 8월 15일
댓글: Mason Dyess 2019년 8월 15일
So for example say I have a vector of length 17. I can fill each element with a -1, 0 or a 1, and I want MATLAB to output the permutations for this situation. However, I realize that trying to output all the permutations would be way too large and unfeasible (3^17 for my example), and I'm only really interested in the permutations that have a low number of non-zero elements (Ex: Only 4 of the 17 elements in the vector are a 1 or -1 and the rest are zeros). Is there a way to generate just this select set of permutations?

채택된 답변

Bruno Luong
Bruno Luong 2019년 8월 15일
m = 17;
nnz = 4;
p=(nchoosek(1:m,nnz));
q=2*(dec2bin(0:2^nnz-1)-'0')-1;
C=repelem(p,size(q,1),1);
R=repmat((1:size(C,1))',1,size(C,2));
V=repmat(q,size(p,1),1);
A = accumarray([R(:) C(:)],V(:))
  댓글 수: 1
Mason Dyess
Mason Dyess 2019년 8월 15일
Thank you so much Bruno Luong. I honestly was skeptical that this scenario was even solvable, but your solution works exactly like I envisioned. Thanks again!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Elementary Math에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by