필터 지우기
필터 지우기

What to do with for-while loop?

조회 수: 1 (최근 30일)
Sherman Ng
Sherman Ng 2022년 4월 3일
답변: Torsten 2022년 4월 3일
The question is "Create the matrix based on the probabilities [0.125 0.125 0.125 0.125 0.125 0.125 0.125 0.125] until you get the 1st 8 "
So apparently the question is only asking for the u's and b's so I do not have to compute the list of s. Apparently I need a for-while-loop to fill in values of u and b. How should I do the for-while loop though?
  댓글 수: 2
Torsten
Torsten 2022년 4월 3일
u = rand()
gives you only one random number.
So over what do you sum in the next line of your code ?
Sherman Ng
Sherman Ng 2022년 4월 3일
I think u should be between 0 and 1 and b should be the position of u inside the cdf.
And then I have to do a for-while loop to repeat that step until the answer is equal to 8.

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

답변 (1개)

Torsten
Torsten 2022년 4월 3일
number_on_dice = 6;
bu = [ ];
while number_on_dice ~= 8
u = rand();
number_on_dice = sum(cdf <= u) + 1;
bu = [bu;[u,number_on_dice]];
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by