Zipf distribution on matlab

How to make zipf distribution on matlab please. Any coding

回答 (1 件)

Star Strider
Star Strider 2016 年 8 月 31 日

0 投票

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.

タグ

質問済み:

2016 年 8 月 31 日

回答済み:

2016 年 8 月 31 日

Community Treasure Hunt

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

Start Hunting!

Translated by