I need to generate a number randomly which is either -1 or 1

15 ビュー (過去 30 日間)
MK96
MK96 2016 年 10 月 22 日
コメント済み: MK96 2016 年 10 月 22 日
Trying to generate either -1 or 1 randomly.
I have looked at;
R = unifrnd(-1,1)
however this generates a random number in the interval (-1,1) whereas I am trying to generate a random number which is either -1 or 1

採用された回答

Image Analyst
Image Analyst 2016 年 10 月 22 日
Try this:
r = 2 * randi(2) - 3
  1 件のコメント
MK96
MK96 2016 年 10 月 22 日
Tried it and it works
Thanks! :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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