how to randomly vary 2 numbers?

9 visualizzazioni (ultimi 30 giorni)
Isabel
Isabel il 5 Lug 2012
Risposto: Orazio Sorgonà il 2 Apr 2022
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

Risposta accettata

John Petersen
John Petersen il 5 Lug 2012
x = 2*round(rand(30,1)) - 1;
  3 Commenti
John Petersen
John Petersen il 5 Lug 2012
Modificato: John Petersen il 5 Lug 2012
No it doesn't. Maybe you didn't grab the whole line?
Isabel
Isabel il 5 Lug 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!

Accedi per commentare.

Più risposte (2)

Andrei Bobrov
Andrei Bobrov il 5 Lug 2012
Modificato: Andrei Bobrov il 5 Lug 2012
eg
A = (rand(5) > .5) + 0;
A(~A) = -1;
or
A = 2*randi([0 1],30,1) - 1;

Orazio Sorgonà
Orazio Sorgonà il 2 Apr 2022
I use
A = -1^(randi([1,2]));

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by