On 4/27/07, Glen W. Mabey <[EMAIL PROTECTED]> wrote:

The following works fine with a python 2.4.3 installation, but with
2.5.1 I get:


In [1]:import numpy

In [2]:fid = file( '/tmp/tfile', 'w' )

In [3]:fid.write( numpy.zeros( 55 ).data )

---------------------------------------------------------------------------
<type 'exceptions.TypeError'>             Traceback (most recent call
last)

/home/gmabey/src/R9619_dev_acqlibweb/Projects/R9619_NChannelDetection/NED/<ipython
console> in <module>()

<type 'exceptions.TypeError'>: non-character (or 8-bit) array cannot be
interpreted as character buffer
> <ipython console>(1)<module>()


Does

In [1]: numpy.zeros(55).tofile('/tmp/tfile')

work?

Chuck
_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to