필터 지우기
필터 지우기

How do you write a command for two loops?

조회 수: 3 (최근 30일)
Nick Haufler
Nick Haufler 2015년 9월 30일
댓글: Nick Haufler 2015년 9월 30일
In the attached document how would you write a command to generate two random numbers for two dice. Below is for one dice; so do you just change roll=randi statement, and put in 2,12 in place of 1,6?
rng('shuffle')
numRolls=input('Please enter how many rolls you would like to simulate:')
counts = zeros(1,6)
for r = 1 : numRolls
roll = randi([1 6],1)
counts(roll) = counts(roll)+1
end
counts = (counts / numRolls)*100

채택된 답변

Image Analyst
Image Analyst 2015년 9월 30일
Try this:
rng('shuffle')
numRolls=input('Please enter how many rolls you would like to simulate:')
counts = zeros(1, 12);
numDice = 2;
for r = 1 : numRolls
roll = randi([1 6],1,numDice);
theSum = sum(roll);
counts(theSum) = counts(theSum) + 1;
end
counts = (counts / numRolls) * 100
  댓글 수: 1
Nick Haufler
Nick Haufler 2015년 9월 30일
Thanks, you're a really big help. Appreciate it.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by