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

2 vues (au cours des 30 derniers jours)
A.K
A.K le 24 Juin 2016
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?

Réponses (1)

Walter Roberson
Walter Roberson le 24 Juin 2016
t = rand() * 2 - 1;
r = t + sign(t);

Catégories

En savoir plus sur Random Number Generation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by