[Numpy-discussion] "Symbol table not found" compiling numpy from git repository on Windows

2012-01-05 Thread John Salvatier
Hello, I'm trying to compile numpy on Windows 7 using the command: "python setup.py config --compiler=mingw32 build" but I get an error about a symbol table not found. Anyone know how to work around this or what to look into? building library "npymath" sources Building msvcr library: "C:\Python26

[Numpy-discussion] Error in numpy.load example?

2012-01-05 Thread Sébastien Barthélémy
Hi all, the doc http://docs.scipy.org/doc/numpy/reference/generated/numpy.load.html contains the following example: Store compressed data to disk, and load it again: >>> np.savez('/tmp/123.npz', a=np.array([[1, 2, 3], [4, 5, 6]]), b=np.array([1, 2])) >>> data = np.load('/tmp/123.npy') Howeve

Re: [Numpy-discussion] what is the best way to pass c, c++ array to numpy in cython?

2012-01-05 Thread Gael Varoquaux
On Thu, Jan 05, 2012 at 04:04:52PM +0900, 최원준 wrote: >can I pass the array without malloc? An array is a pointer in C, so yes you can do what you want. G ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/list