A random symmetric matrix whose row and column sum is equal to one and diagonal is zero
9 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
John D'Errico
on 11 Oct 2022
Edited: John D'Errico
on 11 Oct 2022
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 Comments
John D'Errico
on 11 Oct 2022
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;
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!