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
This error occurs when using a large number of bins. It looks like the problem is windows specific and has to do with the fact that on windows long is 32 bit not 64 causing an overflow for large number of bins.
Specifically it looks like the problem is on line 981 xy = zeros(N, int). int should be changed to np.int64 or np.uint32 if possible.
The text was updated successfully, but these errors were encountered:
This error occurs when using a large number of bins. It looks like the problem is windows specific and has to do with the fact that on windows
long
is 32 bit not 64 causing an overflow for large number of bins.Specifically it looks like the problem is on line 981
xy = zeros(N, int)
.int
should be changed tonp.int64
ornp.uint32
if possible.The text was updated successfully, but these errors were encountered: