Can a two parameter Weibull Distribution be written as an exponential family form?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi guys, I was wondering whether the two parameter Weibull Distribution belongs to a exponential family?
1 comentario
Respuestas (1)
John BG
el 27 de Mzo. de 2017
Keqiao
makedist generates exactly the same points when the setting
Weibull a = Exponential mu
a:scale b:shape
.
pd1=makedist('Weibull','a',2,'b',2) % a:scale b:shape
nx=[0:.1:10]
y=pdf(pd1,nx)
plot(y,'r');grid on
hold all
pd2=makedist('Weibull','a',2,'b',1) % a:scale b:shape
y2=pdf(pd2,nx)
plot(y2,'b');
pd3=makedist('Exponential','mu',2) % a:scale b:shape
y3=pdf(pd3,nx)
plot(y3,'k')
.
.
y2 blue and y3 black are completely overlapped.
isequal(y2,y3)
ans =
1
if you find these lines useful would you please mark my answer as Accepted Answer?
To any other reader, if you find this answer of any help would you please click on the thumbs-up vote link,
thanks in advance for time and attention
John BG
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!