Borrar filtros
Borrar filtros

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

12 visualizaciones (últimos 30 días)
Ee
Ee el 28 de Oct. de 2021
Comentada: Ee el 31 de Oct. de 2021
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!

Respuesta aceptada

Image Analyst
Image Analyst el 29 de Oct. de 2021
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 comentarios
Paul
Paul el 31 de Oct. de 2021
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 el 31 de Oct. de 2021
Thank you! I will try!

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by