Making permutations in a matrix
이전 댓글 표시
Hi,
I have an nxm matrix. I need to make permutations but the row and coloumn sums must be fixed (only the matrix elements will change).
How can I do that?
Thanks..
채택된 답변
추가 답변 (2개)
Image Analyst
2013년 5월 11일
What is your definition of permute? You mean like shuffle/scramble the columns (each column goes to a different place)? I don't think you can do that, in general, without changing the sums. Look at this matrix
1 2
1 1
There's no way you can permute anything with that without changing either the sum of each column, or the sum of each row. Something is going to change.
Do you have one small example that you can show to demonstrate what you are thinking of?
Ayse Kazan
2013년 5월 12일
편집: Image Analyst
2013년 5월 12일
댓글 수: 5
Image Analyst
2013년 5월 12일
Why do you need this? What is the "use case"? Did you try Roger's code?
Ayse Kazan
2013년 5월 12일
Image Analyst
2013년 5월 12일
Here's Roger's code:
A = [15 20;
10 30;
40 30;
50 10;
15 35]
sumsAlongRows = sum(A, 2)
sumsAlongColumns = sum(A, 1)
[n, m] = size(A)
N = 10000;
for k = 1:N
r = randperm(n,2);
r1 = r(1);
r2 = r(2);
c = randperm(m,2);
c1 = c(1);
c2 = c(2);
d = randi([-min(A(r1,c1),A(r2,c2)),min(A(r1,c2),A(r2,c1))]);
A([r1,r2],[c1,c2]) = A([r1,r2],[c1,c2]) + [d,-d;-d,d];
end
A
sumsAlongRows = sum(A, 2)
sumsAlongColumns = sum(A, 1)
It works fine for me but if you have an old version of MATLAB, you'll have to replace
r = randperm(n,2);
with
r = randperm(n);
r = r(1:2);
and do the same for c.
Ayse Kazan
2013년 5월 12일
Payal Verma
2017년 3월 20일
how can i apply it on a image.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!