Tring to figure out a simple problem that uses probability functions.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I need to write a word problem that requires the use of one of the Probability Distributions in order to solve, use MatLab to write code to solve it and generate a graph that illustrates the answer.
I am not looking for anything complicated I just need something that uses Probability functions such as poisscdf,binocdf, normcdf
1 comentario
Fifteen12
el 15 de Dic. de 2022
Is this homework? Knowing if its homework will help responders know how to help you best. Otherwise, who needs to solve the word problem? What is the problem for? There is a lot of degree of difficulty in an abitrary word problem that uses a probability distribution. Hope this helps!
How to write a good question: https://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer
Respuestas (1)
Daksh
el 20 de Dic. de 2022
It is my understanding that you need to use probability distribution functions to plot graphs for dataset you have.
Kindly go through the documentation for "cdf()" (cumulative distribution function). This documentation teaches you about various distribution functions like Poisson distribution cdf, Standard normal distribution cdf, Gamma distribution cdf.
Here is a coding example to plot cdf on Standard Normal distribution of data
% Create a standard normal distribution object.
pd = makedist('Normal')
% Specify the x values and compute the cdf.
x = -3:.1:3;
p = cdf(pd,x);
% Plot the cdf of the standard normal distribution.
plot(x,p)
Hope it helps!
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!