Convolution of two different pdf (uniform and normal distribution)

24 views (last 30 days)
I want to calculate the pdf for convolution of uniform(x~u(a,b)) and normal distributions(y~N(m,sigma^2)).
How can I get the convolution pdf usgin MATLAB code?

Accepted Answer

Jeff Miller
Jeff Miller on 22 Nov 2019
The Cupid toolbox will do this. For example,
u = Uniform(0,100);
n = Normal(100,10); % 2nd parameter is sigma, not sigma^2
c = Convolution(u,n);
c.PlotDens; % See attached
somePDFvals = c.PDF(80:220);

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!