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 boundaries pour imshow() appear to be off, and the graph appears shifted to the left, or they are not binned properly.
I think the calculation in stats.py should be + 0.5 instead of -0.5:
i = int(self.binSizes[0]*(position.x-self.min[0])+0.5)
j = int(self.binSizes[1]*(position.y-self.min[1])+0.5)
k = int(self.binSizes[2]*(position.z-self.min[2])+0.5)
The text was updated successfully, but these errors were encountered:
The boundaries pour
imshow()
appear to be off, and the graph appears shifted to the left, or they are not binned properly.I think the calculation in
stats.py
should be + 0.5 instead of -0.5:The text was updated successfully, but these errors were encountered: