tnLog
- Log-transformed distribution
baseDistribution : | Distribution__RealPos (pass by const reference) |
The distribution to be transformed. |
x ~ tnLog(dnExponential(1)) # The log of an Exponential random variable.
x ~ dnExponential(1) |> tnLog() # Expressed using pipes.
y ~ dnExponential(1)
x := log(y) # This is also equivalent.
x ~ dnDirichlet([1,1,1,1]) |> tnLog()