def __init__(self, a=1, loc=0, scale=1): """ Constructor """ self.a = a self.loc = loc self.scale = scale BasicStructureRandomVariable.__init__(self)
def __init__(self, loc=1, scale=1): """ Constructor Parameters ----------- loc Loc of the distribution (see docs.scipy.org/doc/scipy/reference/generated/scipy.stats.expon.html) scale Scale of the distribution """ self.loc = loc self.scale = scale self.priority = 0 BasicStructureRandomVariable.__init__(self)
def __init__(self, mu=0, sigma=1): """ Constructor Parameters ----------- mu Average of the normal distribution sigma Standard deviation of the normal distribution """ self.mu = mu self.sigma = sigma self.priority = 0 BasicStructureRandomVariable.__init__(self)
def __init__(self, loc=0, scale=1): """ Constructor Parameters ----------- loc Start of the interval scale Scale of the interval """ self.loc = loc self.scale = scale self.priority = 0 BasicStructureRandomVariable.__init__(self)