what is the max element/case of a numpy matrix or what is the maximal size of a numpy matrix?
the code above returns memory error at variable matrix size...so from what environmental thing does it depend (number of sequential amount of memory available?)?
for ret in xrange(5000,7000,50):
res = []
for x in xrange(ret):
temp=[]
for y in xrange(ret):
temp.append(random.random())
res.append(temp)
print "r"
r = numpy.mat(res)
print "s"
s = numpy.mat(res,dtype='f4')
print "t"
w = numpy.mat(res,dtype('f8'))
question: when and why did it return "memory error"?
ps: i use last python and numpy available on windows (yes I know...) 7 64bit.