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

3 ビュー (過去 30 日間)
Quinlin Hamill
Quinlin Hamill 2016 年 10 月 24 日
コメント済み: Quinlin Hamill 2016 年 10 月 24 日
I'm trying to use randi to make a matrix filled with either -1 or 1 however randi also includes 0s.

採用された回答

Image Analyst
Image Analyst 2016 年 10 月 24 日
Try this:
r = 2 * randi(2) - 3
I just answered this very recently.

その他の回答 (1 件)

George
George 2016 年 10 月 24 日
編集済み: George 2016 年 10 月 24 日
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..

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by