I\'m trying to generate random 64-bit integer values for integers and floats using Numpy, within the entire range of valid values for that type. To generate ran
I don't believe it refers to the random seed call. The simplest code I've got that falls into "Python int too large to convert to C long" is:
x = numpy.random.random_integers(2**64,size=(SIZE,)).astype(numpy.uint64)
numpy.version=1.5.0 here