A random symmetric matrix whose row and column sum is equal to one and diagonal is zero
조회 수: 9 (최근 30일)
이전 댓글 표시
i want a random symmetric matrix whose row and column sum is equal to one and diagonal is zero. (The application of this matrix is in the weight graph )
댓글 수: 0
채택된 답변
John D'Errico
2022년 10월 11일
편집: John D'Errico
2022년 10월 11일
If it is symmetric, AND the row sums are 1, then so are the column sums.
But if you are not picky about the distribution of the elements of the matrix. then it is trivial to do. I'll assume from your comments that you want a n all-nonnegative matrix.
N = 5; % the dimension of the matrix
X = randn(N,2);
M = (X(:,1) - X(:,1).').^2 + (X(:,2) - X(:,2).').^2;
; % M is symmetric, with a zero diagonal. Now scale the matrix.
% using an iterative scheme...
flag = true;
while flag
s = sqrt(1./sum(M,1));
flag = norm(s - ones(1,N)) > 1e-16;
M = s.*M.*s.';
end
M
% row sums
sum(M,2)
% column sums
sum(M,1)
Easy enough. I imagine I could come up with a scheme with minor thought that is not iterative, but the above will be convergent, and I don't see a reason to make something computationally elegant when there is no gain from doing so. Is the distribution of the elements of that matrix anything special? They are certainly not uniform. GOD NO! But then, you never specified a distribution.
댓글 수: 2
John D'Errico
2022년 10월 11일
Just use bsxfun instead. That line of code requires R2016b or later, when the idea of a singleton dimension expansion was introduced. This should work:
M = bsxfun(@minus,X(:,1),X(:,1).').^2 + bsxfun(@minus,X(:,2),X(:,2).').^2;
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!