GaussianDistributions.jl icon indicating copy to clipboard operation
GaussianDistributions.jl copied to clipboard

Gaussian distributions as state variables and for uncertainty quantification with Unitful

Results 7 GaussianDistributions.jl issues
Sort by recently updated
recently updated
newest added

This PR implements `Base.copy`, `Base.similar` and `Base.copy!` for `Gaussian`s. For context: I'm using GaussianDistributions.jl in ProbNumDiffEq.jl, and so far I just implemented these functions [there.](https://github.com/nathanaelbosch/ProbNumDiffEq.jl/blob/main/src/gaussians.jl); which "just works", but is...

I ran into a nasty bug just now trying to do `quantile(P, 0.9)`. This runs without error (returning the mean for a univariate at least) but is obviously not what...

Any chance you could provide a citation for the CDF approximation method? Or did you come up with it yourself?

@JuliaRegistrator register Release notes: Support isapprox and updates to packaging.

Would it be nice to change to ``` struct Gaussian{T} params::T end Gaussian(;args...) = Gaussian((;args...)) Π = Gaussian(μ=μp, Σ=Σp) ``` and dispatch on the name of the parameters similarly as...

I occasionally like having Gaussians with covariance=0 (this is natural, given the formulation in MiniKalman.jl). The math for Kalman filtering works fine, but when sampling I have an issue, which...