Special Distributions

Differ from the behavior of Distributions.jl.

Bijectors.logabsdetjacMethod
logabsdetjac(Circular, x)

mod2pi will not be zero for n2π, thus the discontinuity will not be reached. Thus, the log Jacobian is always 0.

source
Bijectors.transformMethod
transform(Circular, x)

Transform from [0,2π] to ℝ. In theory inverse of mod does not exist, in practice the same value is returned, since [0,2π] ∈ ℝ

source
KernelDistributions.SmoothExponentialType
SmoothExponential(min, max, β, σ)

Smooth truncated exponential distribution by convolving the exponential with a normal distribution: Smooth = Exp ⋆ Normal This results in smooth min and max limits and a definition on ℝ instead of ℝ⁺

Does not support truncated of Distributions.jl since it is a smooth truncation of the exponential distribution.

source