フィルターのクリア

calculate the PMF of y (sum of three dices) and plot it

12 ビュー (過去 30 日間)
Ee
Ee 2021 年 10 月 28 日
コメント済み: Ee 2021 年 10 月 31 日
Hello
I pretty confused about how to calculate the PMF of sum of three dices (represented by y such as 3,4,5...18) and how to plot its PMF using Matlab.
I feel like we need to use hist function but have no idea where to start. Hope someone can help me figure out!

採用された回答

Image Analyst
Image Analyst 2021 年 10 月 29 日
Not sure what PMF is. Did you ever actually try histogram()?
numRolls = 1000000;
numDice = 3;
dieFaces = randi([1, 6], numRolls, numDice);
theSums = sum(dieFaces, 2);
histObject = histogram(theSums, 'Normalization','pdf')
grid on;
xlabel('Sums');
ylabel('PDF')
  7 件のコメント
Paul
Paul 2021 年 10 月 31 日
One you know the PMF, for example from the Values of histObject above, the function
doc cumsum
would be of interest for computing the CDF. The functions
doc stem
doc stairs
would be of interest for plotting the CDF.
Ee
Ee 2021 年 10 月 31 日
Thank you! I will try!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics and Visualization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by