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
The mean and bias calculation in fields contains potential divisions by zero when the catalogue is empty:
# Positions# normalize mappos/=nbar# compute bias of number countsbias=ngal/ (4*np.pi) *mapper.area**2/nbar**2# ScalarField# normalise the mapval/=wbar# compute bias from variance (per object)bias=4*np.pi*vbar**2* (var/wmean**2) /ngal# ComplexField# normalise the mapval/=wbar# bias from measured variance, for E/B decompositionbias=2*np.pi*vbar**2* (var/wmean**2) /ngal# Weights# normalise the mapwht/=wbar# bias from weightsbias=4*np.pi*vbar**2* (w2mean/wmean**2) /ngal
The text was updated successfully, but these errors were encountered:
The mean and bias calculation in fields contains potential divisions by zero when the catalogue is empty:
The text was updated successfully, but these errors were encountered: