how to random value?
Afficher commentaires plus anciens
how to random value 2 until 3? example:
>> a=rand(1)
a =
0.8833
but i want the answer 2,3 or 2,5 or 2,6, or 3. thanks
Réponses (2)
Azzi Abdelmalek
le 3 Avr 2013
Modifié(e) : Azzi Abdelmalek
le 3 Avr 2013
n=3
a=rand*n %
Generate values from the uniform distribution on the interval [a, b].
r = 2 + (3-2).*rand(1);
or the general form
r=a+(b-a).*rand(n);
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!