How can I make a random array with values of either -1 or 1?

3 vues (au cours des 30 derniers jours)
Quinlin Hamill
Quinlin Hamill le 24 Oct 2016
Commenté : Quinlin Hamill le 24 Oct 2016
I'm trying to use randi to make a matrix filled with either -1 or 1 however randi also includes 0s.

Réponse acceptée

Image Analyst
Image Analyst le 24 Oct 2016
Try this:
r = 2 * randi(2) - 3
I just answered this very recently.

Plus de réponses (1)

George
George le 24 Oct 2016
Modifié(e) : George le 24 Oct 2016
You can use rand
% pseudo code
x = rand(50,1);
pos = x >= .5;
neg = x < .5;
x(pos) = 1;
x(neg) = -1;
This suffers from the fact that you have to make a decision when randn returns 0.5 exactly..

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by