I'm trying to take the covariance of a large matrix using numpy.cov. I get the following error:
Python(22498,0xa02e3720) malloc: *** mmap(size=1340379136) failed (error code=12) *** error: can't allocate region *** set a breakpoint in malloc_error_break to debug Process Python bus error
It seems that this is not uncommon for 32-bit machines/builds (I have a 64-bit mac os x 10.5, but using a 32-bit python and numpy build as I had trouble building numpy+scipy+matplotlib on a 64-bit installation).
So at this point what would be the recommended course of action that will allow me to proceed with the analysis, if not switching machines (none others are available to me at the moment)? Export to fortran/C? Is there a simple(r) solution? Thanks for your suggestions.
sys.getsizeof(x)gives me only 60 bytes. My array is 15000 x 4 though, and I did not haverowvar=Falseas was intended (the input is transposed with respect to R's convention). Perhaps this was the error... with the matrix transposed, it works. But is indeed strange. – crippledlambda Nov 27 '11 at 8:42