random symmetric logical matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Raviteja
el 12 de Sept. de 2011
Comentada: John D'Errico
el 21 de Mayo de 2018
How to generate a random logical symmetric matrix?
(binary symmetric matrix)
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 12 de Sept. de 2011
a = triu(rand(5));
out = a + tril(a',-1)>.5
variant 2
a = rand(5)
b = a+a'
out = b >= mean(b(:))
4 comentarios
Derek O'Connor
el 12 de Sept. de 2011
I like variant 3 even better. Concise but not obscure. Excellent!
Walter Roberson
el 12 de Sept. de 2011
I don't see why the mean() version would work without bias. Suppose that all of the random numbers generated were less than 1/4, so even after adding transpose each total was less than 1/2. Clearly the output for such a matrix should be complete logical 0s. But unless all of the values generated were identical, at least one of the sums is going to be greater than the mean, so if one compares to mean(b(:)) one would get logical 1 in that position. (And if all of the values _are_ identical then they would all be equal to the mean to within roundoff and so the returned result would either be all 0 or all 1 depending which way the mean() rounded.)
It seems to me, then, that for variant 2, instead of comparing to mean(b(:)), one should be comparing to 1
a = rand(5);
b = a + a';
out = b >= 1;
Which can then be made more concise as
a = rand(5);
out = (a+a') >= 1;
Note: the uniform distributions all generate (2^b - 2) different possible numbers, with b=53 for all the generators except one legacy generator that has b=24 . The possible numbers are spaced 2^(-b) apart. The generators cannot generate exactly 0 or exactly 1. If you do a quick counting test, you will see that 0.5 exactly is the first number of the second half of the count, so instead of comparing for > 0.5, you should be comparing for >= 0.5 .
Más respuestas (1)
kika198513
el 21 de Mayo de 2018
Hi all! Do you have an idea about how to generate a random symmetric logical matrix having a fixed number of 1s over each row and each column? The final matrix should be huge (60000x60000) with very few 1s (8 within each row and each column). I cannot apply the idea above for two reasons: the huge size of the matrix and the fact that in "out = a + tril(a',-1)>.5" I cannot control the final number of 1s at the levels of rows and columns. Many thanks!
1 comentario
John D'Errico
el 21 de Mayo de 2018
Please don't add an answer just to ask a new question. I will not answer it as such. However, I will answer your question IF you ask the question separately, as a NEW question. This is not that difficult to do.
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!