]> Cypherpunks repositories - gostls13.git/commitdiff
math/rand: improve NewZipf documentation
authorJosh Bleecher Snyder <josharian@gmail.com>
Fri, 3 Jul 2015 18:11:42 +0000 (11:11 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Fri, 3 Jul 2015 21:39:04 +0000 (21:39 +0000)
Change-Id: I78f0f9ac33db153c4a0d7f9866da20ebcd3d3639
Reviewed-on: https://go-review.googlesource.com/11872
Reviewed-by: Rob Pike <r@golang.org>
src/math/rand/zipf.go

index 8db2c6f5bffe2db7f5dafcc8dc119932dd487ab9..f04c814eb751ffe36ed259c98cf9e461d8ed7168 100644 (file)
@@ -32,8 +32,10 @@ func (z *Zipf) hinv(x float64) float64 {
        return math.Exp(z.oneminusQinv*math.Log(z.oneminusQ*x)) - z.v
 }
 
-// NewZipf returns a Zipf generating variates p(k) on [0, imax]
-// proportional to (v+k)**(-s) where s>1 and k>=0, and v>=1.
+// NewZipf returns a Zipf variate generator.
+// The generator generates values k ∈ [0, imax]
+// such that P(k) is proportional to (v + k) ** (-s).
+// Requirements: s > 1 and v >= 1.
 func NewZipf(r *Rand, s float64, v float64, imax uint64) *Zipf {
        z := new(Zipf)
        if s <= 1.0 || v < 1 {