-
Notifications
You must be signed in to change notification settings - Fork 41
Description
From the readme (and docs):
The linear error propagation theory is employed to propagate the errors.
It looks to me that this package isn't employing "full linear propagation theory" but in fact always assumes measurements to be independent (please correct me if I'm mistaken). Specifically, if I have two Measurement
s a
and b
and am interested in the uncertainty of f(a,b)
you seem to assume that a
and b
are independent, in which case covariances vanish and the linear error propagation is simplified. See this example on wikipedia.
I am aware of the explanations of "functional correlation" and the method used in the docs and the paper. I nonetheless suggest to mention this extra assumption in the sentence above, as it might be a bit misleading otherwise.
(I was suprised to see a difference between a manually implemented (full) linear propagation theory and Measurements.jl for the simple function f(x,y) = x + y
, see carstenbauer/BinningAnalysis.jl#46 (comment)).