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!