What is the Cumulative Distribution Function for Loglogistic distribution? I only found the Probability Density Function in the following link: https://www.mathworks.com/help/stats/loglogistic-distribution.html.

댓글 수: 2

Walter Roberson
Walter Roberson 2018년 11월 8일
https://en.m.wikipedia.org/wiki/Log-logistic_distribution
Zhengpu Chen
Zhengpu Chen 2018년 11월 8일
편집: Walter Roberson 2018년 11월 8일
Thank you for the reply. The expression of the function in Wiki and the one in Matlab documentation https://www.mathworks.com/help/stats/loglogistic-distribution.html seem to be not the same. I don't know if they are equivalent.

댓글을 달려면 로그인하십시오.

 채택된 답변

David Goodmanson
David Goodmanson 2018년 11월 9일
편집: David Goodmanson 2018년 11월 9일

2 개 추천

Hello ZC,
They are equivalent. In Matlab
cdf = e^z / (1+e^z) % the missing one
pdf = (1/(sigma*x))*e^z / (1+e^z)^2
where
z = (log(x)-mu)/sigma
When you make the substitution (as mentioned in wikipedia, where they use s in place of sigma)
beta = 1/sigma e^mu = alpha
then
e^z = (x/alpha)^beta
and for wiki,
cdf = (x/alpha)^beta) /(1+(x/alpha)^beta)
pdf = (beta/alpha)*(x/alpha)^(beta-1)/(1+(x/alpha)^beta)^2

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Probability Density Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by