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}
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How do I use the randomness funtion in this problem??
0 comentarios
Respuestas (3)
Walter Roberson
el 1 de Oct. de 2013
S = [-20,-10,0,10,20,30];
Now generate a random number between 1 and length(S) and index S with it.
0 comentarios
Ver también
Categorías
Más información sobre Elementary Math en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!