From 8b02a015b51e62457a0cce77992ee683cfd53366 Mon Sep 17 00:00:00 2001 From: Arnaud Watlet <arnaud.watlet@umons.ac.be> Date: Thu, 23 Feb 2023 12:10:29 +0100 Subject: [PATCH] updates Vmn error computation --- ohmpi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ohmpi.py b/ohmpi.py index c995d2e3..9fa48f58 100644 --- a/ohmpi.py +++ b/ohmpi.py @@ -992,7 +992,7 @@ class OhmPi(object): np.array([[]]) vmn_stack_mean = np.mean([np.diff(np.mean(vmn_stack[i*2:i*2+2], axis=1)) / 2 for i in range(nb_stack)]) - vmn_std = np.mean([np.std(vmn_stack[::2]), np.std(vmn_stack[1::2])]) + vmn_std = np.sqrt(([np.std(vmn_stack[::2])**2, np.std(vmn_stack[1::2])])**2) i_stack_mean = np.mean(i_stack) i_std = np.mean(np.array([np.std(i_stack[::2]), np.std(i_stack[1::2])])) r_stack_mean = vmn_stack_mean / i_stack_mean -- GitLab