Hi guys!
I have a problem calling the numpy.random.hypergeometric function with certain values. It seems like if the values hit in some certain range the program stalls and never finishes. I get no errors or anything and also a wxpython GUI that i have calling this function crashes with no error messages.
My operating system is Vista, Python version 2.6 and the latest NumPy version(and SciPy).
Any idea what causes this?
Here's an example:
from numpy.random import hypergeometric
print hypergeometric(10000, 10000, 10000) #Works fine
print hypergeometric(100000, 1000000, 100000) #Works fine
print hypergeometric(10000000, 1000000000, 1000000) #Works fine
print hypergeometric(1000000, 10000000, 100000) #Doesn't work