Tring to figure out a simple problem that uses probability functions.

3 次查看(过去 30 天)
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 个评论
Fifteen12
Fifteen12 2022-12-15
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!

请先登录,再进行评论。

回答(1 个)

Daksh
Daksh 2022-12-20
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')
pd =
NormalDistribution Normal distribution mu = 0 sigma = 1
% 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!

Community Treasure Hunt

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

Start Hunting!

Translated by