You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Measurements.jl implicitly assumes that all errors are statistical errors. In most cases this is correct. However, there are cases when the total error is a combination of statistical and systematic error. This is a request to allow for such a distinction in Measurements.jl. So, when a measurement is displayed, it can contain both statistical and systematic errors.
The text was updated successfully, but these errors were encountered:
There's a small little-known trick you can already use right now to achieve what you want: create a Measurement{Measurement}} object
julia> x = ((5±0.1) ±0.2)
5.0±0.1±0.2±0.0
julia> y = ((10±0.2) ±0.3)
10.0±0.2±0.3±0.0
julia> x + y
15.0±0.22±0.36±0.0
The "problem" is that you have "3 errors", you have to always discard the last one, but the first two are propagated independently, which I believe is what you want.
Measurements.jl implicitly assumes that all errors are statistical errors. In most cases this is correct. However, there are cases when the total error is a combination of statistical and systematic error. This is a request to allow for such a distinction in Measurements.jl. So, when a measurement is displayed, it can contain both statistical and systematic errors.
The text was updated successfully, but these errors were encountered: