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
dv_rpcut=np.diff(v_rpcut, axis=0) # volume in each bin removed by rp selection
1494
+
dv_total=dv-dv_rpcut
1495
+
dv=np.where(dv_total>=1e-8*dv, dv_total, 0) # ensure that the volume is not negative and further remove small positive values that may arise due to rounding errors; assumes that dv is accurate
dv_rpcut=np.diff(np.diff(v_rpcut, axis=0), axis=-1) # volume in each bin removed by rp selection
1511
+
dv_total=dv-dv_rpcut
1512
+
dv=np.where(dv_total>=1e-8*dv, dv_total, 0) # ensure that the volume is not negative and further remove small positive values that may arise due to rounding errors; assumes that dv is accurate
0 commit comments