Hola a todos y buen año 2017!

Estoy usando el siguiente código sencillo para abrir el archivo binario:
ds1000_20150626_133335_B0835-41.bin.

#!/usr/bin/python

import numpy, pylab

aa=numpy.fromfile('ds1000_20150626_133335_B0835-41.bin', dtype=numpy.uint8,
count=-1)
pylab.plot(aa)
pylab.ylabel('Power (arbitrary units)')
pylab.grid()
pylab.xlabel('time')
pylab.show()


Pero surge el siguiente error: OverflowError: Allocated too many blocks

Pueden sugerirme alguna solución?

Saludos y gracias.

Rolando P.
_______________________________________________
Python-es mailing list
Python-es@python.org
https://mail.python.org/mailman/listinfo/python-es

Responder a