Distributions.jl
Distributions.jl copied to clipboard
Quantile of MixtureModel seems to never converge
using Distributions
mmdist = MixtureModel(Exponential, [10_000, 1_000_000], [.5, .5])
quantile(mmdist, .999)
This seems to never return an answer. But quantile(mmdist, .1) seems to work.
I tested on Julia 1.9 and the latest 1.10 RC2 with the latest version of the Distributions package.
Possibly duplicate of https://github.com/JuliaStats/Distributions.jl/issues/1611?