Probability HW Need help
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
Can someone help mw with homework? How do I start ? What should I use ? Do I need conditional statements or not ? What kind of variables do I need to do ?

1 件のコメント
James Tursa
2021 年 1 月 26 日
Have you written any code yet? Do you have any specific questions about that code? E.g., to simulate a single fair coin flip where 0=tails and 1=heads you could do this:
coinflip = rand < 0.5;
採用された回答
David Hill
2021 年 1 月 26 日
head=1, tails=0. This should give you a good start.
a=randi(2,5,10)-1;
results=sum(a);
b=randi(2,5,1000)-1;
results2=sum(b);
histogram(results2);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Random Number Generation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!