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

1 次查看(过去 30 天)
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