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 次查看(过去 30 天)
显示 更早的评论
How do I use the randomness funtion in this problem??
0 个评论
回答(3 个)
Walter Roberson
2013-10-1
S = [-20,-10,0,10,20,30];
Now generate a random number between 1 and length(S) and index S with it.
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!