Can a two parameter Weibull Distribution be written as an exponential family form?
조회 수: 6 (최근 30일)
이전 댓글 표시
답변 (1개)
John BG
2017년 3월 27일
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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!