how to randomly vary 2 numbers?

Hi! I want to generate a column of 30 randomly varying -1s and 1s. How can I do that? I was trying randi([-1:2:1],30,1) but that gives me zeros too and I don't want zeros, only -1 and 1. Thanks

 Respuesta aceptada

John Petersen
John Petersen el 5 de Jul. de 2012

1 voto

x = 2*round(rand(30,1)) - 1;

3 comentarios

Isabel
Isabel el 5 de Jul. de 2012
This gives me a column of zeros only. Thanks anyways
John Petersen
John Petersen el 5 de Jul. de 2012
Editada: John Petersen el 5 de Jul. de 2012
No it doesn't. Maybe you didn't grab the whole line?
Isabel
Isabel el 5 de Jul. de 2012
Sorry, it does work, my bad. I think I din't copy the whole formula or something. Thank you very much for your answer!

Iniciar sesión para comentar.

Más respuestas (2)

Andrei Bobrov
Andrei Bobrov el 5 de Jul. de 2012
Editada: Andrei Bobrov el 5 de Jul. de 2012

1 voto

eg
A = (rand(5) > .5) + 0;
A(~A) = -1;
or
A = 2*randi([0 1],30,1) - 1;

Categorías

Más información sobre Random Number Generation en Centro de ayuda y File Exchange.

Preguntada:

el 5 de Jul. de 2012

Respondida:

el 2 de Abr. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by