Convolution of two different pdf (uniform and normal distribution)

15 vues (au cours des 30 derniers jours)
MINA WOO
MINA WOO le 22 Nov 2019
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?

Réponse acceptée

Jeff Miller
Jeff Miller le 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);

Plus de réponses (0)

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by