How do I create random Boolean array with at least one 1 in each row?

Risposte (1)

For a row, e.g.,
n = number of random numbers in a row
row = randi(2,1,n)-1;
while( ~any(row) )
row = randi(2,1,n)-1;
end

Categorie

Scopri di più su Random Number Generation in Centro assistenza e File Exchange

Richiesto:

il 31 Mar 2015

Modificato:

il 31 Mar 2015

Community Treasure Hunt

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

Start Hunting!

Translated by