I am trying to write a script that generates a list of 100 integers selected randomly from the set {-20,-10,0,10,20,30}

1 vue (au cours des 30 derniers jours)
How do I use the randomness funtion in this problem??

Réponses (3)

Walter Roberson
Walter Roberson le 1 Oct 2013
S = [-20,-10,0,10,20,30];
Now generate a random number between 1 and length(S) and index S with it.

sharvari samant
sharvari samant le 1 Oct 2013
use the function randsrc

Roger Stafford
Roger Stafford le 1 Oct 2013
x = 10*randi(6,100,1)-30;

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