How do I generate a random number between -2 and -1, and between 1 and 2?

조회 수: 3 (최근 30일)
A.K
A.K 2016년 6월 24일
답변: Walter Roberson 2016년 6월 24일
I can use rand to get a random number between -2 and 2, but I don't want any numbers between -1 and 1. Is there a function that lets me do this?

답변 (1개)

Walter Roberson
Walter Roberson 2016년 6월 24일
t = rand() * 2 - 1;
r = t + sign(t);

카테고리

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