Translations:Gerador Aleatório para Distribuição Exponencial/4/en

De Augusto Baffa Wiki
Revisão de 09h55min de 30 de dezembro de 2020 por Abaffa (discussão | contribs) (Criou página com '<syntaxhighlight lang="Python"> def pseudo_exp(lamb, size=1): """ Generates exponential distribution from uniform generator """ # Sets seed based on the decima...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar
def pseudo_exp(lamb, size=1):
    """
    Generates exponential distribution from uniform generator
    """
    # Sets seed based on the decimal portion of the current system clock
    t = time.perf_counter()
    seed = int(10**9*float(str(t-int(t))[0:]))
    
    U = pseudo_uniform(seed=seed, size=size)
    X = -(1/lamb)*(np.log(1-U))
    
    return X