random vectorof zeros and 1

1 visualización (últimos 30 días)
joseph Frank
joseph Frank el 20 de Abr. de 2013
Hi,
if I want to generate a random vector of length 1000 where 700 are zeros and 300 are ones how can I do so? I want the zeros and ones to be have a random occurrence in the vector. for example:
A=[ 1 0 1 1 0 1 0 0 .....1] % till observation 1000;
Thanks

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 20 de Abr. de 2013
A=zeros(1,1000)
A(randperm(1000,300))=1

Más respuestas (0)

Categorías

Más información sobre Random Number Generation 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!

Translated by