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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Random Number Generation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by