generate random numbers outside a range
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I generate random numbers outside a specific range? I want to generate random numbers outside the interval of [-1,3]
2 Commenti
Risposta accettata
KSSV
il 16 Feb 2017
a = -10;
b = 10;
r = (b-a).*rand(1000,1) + a;
%%remove the range [-1 3]
r1 = r ;
r1(r>=-1 & r<=3) = [];
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Random Number Generation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!