-
Notifications
You must be signed in to change notification settings - Fork 16
/
pareto.go
33 lines (27 loc) · 957 Bytes
/
pareto.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package rng
import (
"fmt"
"math"
)
// ParetoGenerator is a random number generator for type I pareto distribution.
// The zero value is invalid, use NewParetoGenerator to create a generator
type ParetoGenerator struct {
uniform *UniformGenerator
}
// NewParetoGenerator returns a type I pareto-distribution generator
// it is recommended using time.Now().UnixNano() as the seed, for example:
// crng := rng.NewParetoGenerator(time.Now().UnixNano())
func NewParetoGenerator(seed int64) *ParetoGenerator {
urng := NewUniformGenerator(seed)
return &ParetoGenerator{urng}
}
// Pareto returns a random number of type I pareto distribution (alpha > 0,0)
func (prng ParetoGenerator) Pareto(alpha float64) float64 {
if !(alpha > 0.0) {
panic(fmt.Sprintf("Invalid parameter alpha: %.2f", alpha))
}
return prng.pareto(alpha)
}
func (prng ParetoGenerator) pareto(alpha float64) float64 {
return math.Pow(1-prng.uniform.Float64(), -1.0/alpha) - 1.0
}