Zipf distribution on matlab
이전 댓글 표시
How to make zipf distribution on matlab please. Any coding
답변 (1개)
Star Strider
2016년 8월 31일
It’s easy enough to code:
zipfpdf = @(x,rho) x.^(-(rho + 1)) ./ zeta(rho + 1);
See the discussion on Wolfram MathWorld for the Zipf Distribution for a full discussion and an expression for the cumulative distribution function and moments.
카테고리
도움말 센터 및 File Exchange에서 Logistic Distribution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!