Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dirac #1745

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Dirac #1745

wants to merge 2 commits into from

Commits on Jul 2, 2023

  1. Dirac: Implement location, scale, affine transformation

    closes JuliaStats#1731
    
    * location implemented
    * scale implemented (= one)
    * shifting = :+ implemented
    
    * Scaling = :*, errors
    
    Widening the Dirac cannot be done in a type stable way.
    Dirac can be interpreted as limit of some distributions
    in the limit σ^2 -> 0.0 (e.g. Normal, Uniform, Cosine).
    Falling back to one of these is arbitrarily and not
    type stable. Therefore it's up to the user what to do
    when recaling (= lowering certainty) needs to be done.
    
    Adding two Dirac distributions is allowed. The sum
    of Dirac distributed random variables is interpreted
    as the sum of their values. This result can be obtained
    by either interpretation as certain bare numbers or
    by convolution.
    
    resolves JuliaStats#1695
    
    Type T is reduced to T<:Real to be consistent with other
    distributions. Non-scalar values are no longer allowed
    as arguments.
    This is a **potentially breaking** change, if user code
    relied on unintended behaviour.
    i9e1 committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    dfac23b View commit details
    Browse the repository at this point in the history
  2. Apply suggestions from code review

    Co-authored-by: David Widmann <[email protected]>
    i9e1 and devmotion committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    a402444 View commit details
    Browse the repository at this point in the history