Skip to content
Snippets Groups Projects
Commit 34b89820 authored by Felix Metzner's avatar Felix Metzner
Browse files

Fixing new bug in calculation of systematic error.

parent e41caa84
Branches
No related tags found
No related merge requests found
......@@ -594,7 +594,7 @@ class SysResultItem:
tuple(base_result.param_values[:2]),
)
errors: np.ndarray = np.sqrt(np.square(np.abs(base_result.errors[:2]) - np.square(this_result.errors[:2])))
errors: np.ndarray = np.sqrt(np.abs(np.square(base_result.errors[:2]) - np.square(this_result.errors[:2])))
relative_errors: np.ndarray = errors / base_result.param_values[:2]
rd_error: float = errors[0]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment