how do i generate conditional random number either 0 or 1 ?

1 visualización (últimos 30 días)
Gourav Sisodiya
Gourav Sisodiya el 21 de Mayo de 2019
Editada: madhan ravi el 21 de Mayo de 2019
I have a matrix initialized with all zeros. Next i want to fill it with 1 under certain condition.. If distance between each location to every other location is greater than 0 and less than 2, than there must be chance of filling it with 1, that should be random either 0 or 1, but only after distance condition is satisfied.
How can i do it ? i have tried it as shown in code, but its not working.
dist_mtr = squareform( pdist(locations,'euclidean') );
adj_mtr(dist_mtr > 0 & dist_mtr <= 2*r) = randi([0, 1]);

Respuestas (1)

madhan ravi
madhan ravi el 21 de Mayo de 2019
Editada: madhan ravi el 21 de Mayo de 2019
adj_mtr(dist_mtr > 0 & dist_mtr <= 2*r) = randi([0, 1],1,nnz(dist_mtr > 0 & dist_mtr <= 2*r));

Categorías

Más información sobre Random Number Generation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by