[Numpy-discussion] r6056 - branches/visualstudio_manifest/numpy/distutils/command - Minor Typo

2008-11-17 Thread Scott Sinclair
2008/11/17 [EMAIL PROTECTED]: Author: cdavid Date: 2008-11-17 06:03:57 -0600 (Mon, 17 Nov 2008) New Revision: 6056 Modified: branches/visualstudio_manifest/numpy/distutils/command/config.py Log: Detect whether config link needs embedding the manifest for the MSVC runtime. Modified:

Re: [Numpy-discussion] r6056 - branches/visualstudio_manifest/numpy/distutils/command - Minor Typo

2008-11-17 Thread David Cournapeau
Scott Sinclair wrote: The section of the message in the ValueError exception reading Dyscrepancy between linked msvcr should read Discrepancy between linked msvcr . I think it's worth fixing if it's going to be seen by users. Yep, you're right. I can't even use the non-native speaker

[Numpy-discussion] numpy and python 2.6 on windows: please test

2008-11-17 Thread David Cournapeau
Hi, I think I finally solve most serious issues for numpy on python 2.6 on windows. I would appreciate if people would test building numpy (trunk); in particular since some issues are moderately complex and system dependent, I am interested in the following configurations: - python

Re: [Numpy-discussion] Indexing in Numpy vs. IDL?

2008-11-17 Thread Paul Probert
Jason Woolard wrote: hi all, I'm fairly new to Numpy and I've been trying to port over some IDL code to become more familiar. I've been moderately successful with numpy.where and numpy.compress to do some of things that were pretty easy to do in IDL. I'm a bit confused about how the

[Numpy-discussion] Weave Ext_tools converters not working??

2008-11-17 Thread Søren Nielsen
Can anyone explain why this fails? This piece of code runs perfectly using weave.inline and type_converters = blitz.. Obviously it can't handle 2D arrays anymore. It's just a stupid example to illustrate that. Thanks, Soren CODE :

Re: [Numpy-discussion] Weave Ext_tools converters not working??

2008-11-17 Thread Nadav Horesh
On Mon, 2008-11-17 at 15:42 +0100, Søren Nielsen wrote: why test(x,y) = 2; and not test[x][y] = 2; ? Nadav Can anyone explain why this fails? This piece of code runs perfectly using weave.inline and type_converters = blitz.. Obviously it can't

Re: [Numpy-discussion] Weave Ext_tools converters not working??

2008-11-17 Thread Søren Nielsen
because it's written as C code using the blitz type converter.. I found the answer to my own problem. I added type_converters = converters.blitz in the ext_functions function call. On Mon, Nov 17, 2008 at 7:09 PM, Nadav Horesh [EMAIL PROTECTED]wrote: On Mon, 2008-11-17 at 15:42 +0100, Søren

Re: [Numpy-discussion] Breaking up the umathmodule file.

2008-11-17 Thread Travis E. Oliphant
Charles R Harris wrote: Hi All, I propose: umath_funcs_c99.inc.src umath_funcs.inc.src umath_loops.inc.src umath_object.inc umathmodule.c This sounds fine to me. -Travis ___ Numpy-discussion mailing list Numpy-discussion@scipy.org

[Numpy-discussion] python-numpy: memory leak in exponentiation

2008-11-17 Thread Ondrej Certik
Hi, the details including a test script are at: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=505999 Thanks, Ondrej ___ Numpy-discussion mailing list Numpy-discussion@scipy.org http://projects.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] r6056 - branches/visualstudio_manifest/numpy/distutils/command - Minor Typo

2008-11-17 Thread Charles R Harris
On Mon, Nov 17, 2008 at 5:17 AM, David Cournapeau [EMAIL PROTECTED] wrote: Scott Sinclair wrote: The section of the message in the ValueError exception reading Dyscrepancy between linked msvcr should read Discrepancy between linked msvcr . I think it's worth fixing if it's going to be

[Numpy-discussion] difference between ma.masked and m a.masked_array?

2008-11-17 Thread Timmie
Hello, what is the difference between ma.masked and ma.masked_array? I am using this expression along with the scikit.timeseries: series[(series.years2000)(series.years2010)]=np.ma.masked = but now, my series does not get masked. Rather the selected values (left part of the '=') get set to

Re: [Numpy-discussion] difference between ma.masked and ma.masked_array?

2008-11-17 Thread Scott Sinclair
2008/11/17 Timmie [EMAIL PROTECTED]: what is the difference between ma.masked and ma.masked_array? I don't know the answer to that question, but both appear to be some kind of alias for the MaskedArray class and not part of the API. I am using this expression along with the scikit.timeseries: