This commit is contained in:
P.M. Sutter 2014-05-21 08:49:01 -04:00
commit eb7b0a8d44
3 changed files with 1 additions and 5 deletions

View file

@ -76,7 +76,7 @@ def buildProfile(catalog, rMin, rMax):
binCenters = 0.5*(radii[1:] + radii[:-1])
nVoids = len(voidsToStack)
stackedProfile = np.std(allProfiles, axis=0) / np.sqrt(nVoids)
stackedProfile = np.mean(allProfiles, axis=0)
sigmas = np.std(allProfiles, axis=0) / np.sqrt(nVoids)
return binCenters, stackedProfile, sigmas