class ParetoDistribution

Attributes

mean[R]
val_1[R]
val_2[R]

Public Class Methods

new(val_1, val_2, mean) click to toggle source
# File lib/flows_distributions/pareto_distribution.rb, line 4
def initialize(val_1, val_2, mean)
        @val_1 = val_1
        @val_2 = val_2
        @mean = mean
end