Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
combinations and their sum
조회 수: 1 (최근 30일)
이전 댓글 표시
A = [1 2;
1 2;
1 2
1 2];
m = size(A,1);
output = [];
for j = 1:2
output = [output; A(:,j)'];
for i = 1:m
output = [output; [A(1:i-1,j); A(i,3-j); A(i+1:end,j)]'];
end
end
sum=output
sumOutput = sum(output,2)
if you could run this code you can see
this code is missing few combinations like
1 1 2 2
1 2 1 2
1 2 2 1
2 2 1 1
2 1 2 1
2 1 1 2
took 1 and 2 digits to understand combinations clearly.
Is it possible to fix the above error?
Can I get a code for n rows and n columns?
댓글 수: 0
답변 (1개)
Sulaymon Eshkabilov
2019년 10월 19일
Hi,
Here is a rather simple answer:
[A1,A2,A3,A4] = ndgrid([1 2 1 2]);
VERS = [A1(:), A2(:), A3(:), A4(:)]
SUM_VERS = sum(VERS, 2)
Good luck.
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!