What to do with for-while loop?
1 回表示 (過去 30 日間)
古いコメントを表示
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?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/951329/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/951369/image.png)
2 件のコメント
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 ?
回答 (1 件)
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
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!