Re: [Numpy-discussion] Support of @= in numpy?

2015-12-26 Thread Hans Larsen
Den 26-12-2015 kl. 17:26 skrev Charles R Harris: I just haven get NumPy ver. 1-10-2: Also in this @= is'n supported!:-( On Sat, Dec 26, 2015 at 9:06 AM, Hans Larsen > wrote: I have a Python3.5.1 64bits on Windows 10 same bit-length! I want to knowing when and

Re: [Numpy-discussion] Support of @= in numpy?

2015-12-26 Thread Charles R Harris
On Sat, Dec 26, 2015 at 9:06 AM, Hans Larsen wrote: > I have a Python3.5.1 64bits on Windows 10 same bit-length! > I want to knowing when and what version of numpy, that support @= ? > I have a functional numpy-1-10-1!=-O > May I suggest numpy 1.10.2? Numpy 1.10.1 has some nasty bugs. In any ca

[Numpy-discussion] Support of @= in numpy?

2015-12-26 Thread Hans Larsen
I have a Python3.5.1 64bits on Windows 10 same bit-length! I want to knowing when and what version of numpy, that support @= ? I have a functional numpy-1-10-1!=-O -- Hans Larsen Galgebakken Sønder 4-11A 2620 Albertslund Danmark/Danio ___ NumPy-Discussi

Re: [Numpy-discussion] Problem writing array with savetxt (python3.5)

2015-12-26 Thread Julian Taylor
hi unfortunately numpy text io in python3 is very broken and best avoided. Technically you might be able to work around it by opening the file in binary mode but that is the wrong way of doing it and might break when we finally get around to really fixing it, also won't work for unicode and string

[Numpy-discussion] Problem writing array with savetxt (python3.5)

2015-12-26 Thread Maxim Mayzel
Dear all, I’m having a problem writing an array with np.savetxt, see below. (python3.5, numpy 1.10.1) import numpy as np a=np.ones(5,dtype=int) np.savetxt('t.txt',a) Works fine, but the content of ’t.txt’ is overwritten. But, passing file handle gives an error, while it works fine on python2.7