Re: [Numpy-discussion] linux wheels coming soon

2016-04-14 Thread Jonathan Helmus
On 4/14/16 3:11 PM, Matthew Brett wrote: On Thu, Apr 14, 2016 at 12:57 PM, Matthew Brett wrote: On Thu, Apr 14, 2016 at 12:25 PM, Jonathan Helmus wrote: On 4/14/16 1:26 PM, Matthew Brett wrote: Hi, On Thu, Apr 14, 2016 at 11:11 AM, Benjamin Root wrote: Are we going to have to have

Re: [Numpy-discussion] linux wheels coming soon

2016-04-14 Thread Jonathan Helmus
strange. Logs are in https://gist.github.com/jjhelmus/a433a66d56fb0e39b8ebde248ad3fe36 Cheers, - Jonathan Helmus Cheers, Matthew ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org https://mail.scipy.org/mailman/listinfo/numpy-discussion _

Re: [Numpy-discussion] Using OpenBLAS for manylinux wheels

2016-03-29 Thread Jonathan Helmus
n2.7/dist-packages/numpy/f2py/tests/util.py", line 84, in wrapper raise ret ImportError: /usr/local/lib/python2.7/dist-packages/numpy/core/../.libs/libgfortran.so.3: version `GFORTRAN_1.4' not found (required by /tmp/tmptYznnz/_test_ext_module_5405.so) ---

Re: [Numpy-discussion] Subclassing ma.masked_array, code broken after version 1.9

2016-02-13 Thread Jonathan Helmus
3)) print('fs3.folded status: {0}'.format(fs3.folded)) $ python example.py Working with numpy 1.10.2 numpy.ma.log: fs2 type: fs2.folded status: unspecified numpy.log: __array_wrap__ called fs3 type: fs3.folded status: True The change mentioned

Re: [Numpy-discussion] Fwd: Windows wheels for testing

2016-02-13 Thread Jonathan Helmus
ilures - I believe they are benign... Matthew Matthew, The wheels seem to work fine in the Python provided by Continuum on 32-bit Windows. Tested in Python 2.7, 3.3 and 3.4. The only test errors/failures was the the vcvarsall.bat error on all three versions. Full tests logs at https://gist

Re: [Numpy-discussion] Proposal for a new function: np.moveaxis

2015-11-05 Thread Jonathan Helmus
Also a +1 from me. I've had to (re-)learn how exactly np.transpose works more times then I care to admit. - Jonathan Helmus On 11/05/2015 02:26 AM, Juan Nunez-Iglesias wrote: > I'm just a lowly user, but I'm a fan of this. +1! > > > > > On Thu, Nov

Re: [Numpy-discussion] Commit rights for Jonathan J. Helmus

2015-10-30 Thread Jonathan Helmus
y to have you on the team! > > Allan > Thanks you everyone for the kind welcome. I'm looking forwarding to being part of them team. - Jonathan Helmus ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org https://mail.scipy.org/mailman/listinfo/numpy-discussion

[Numpy-discussion] Behavior of numpy.copy with sub-classes

2015-10-19 Thread Jonathan Helmus
np x = np.ma.array([1,2,3]) copy_x = np.copy(x) Cheers, - Jonathan Helmus ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org https://mail.scipy.org/mailman/listinfo/numpy-discussion

[Numpy-discussion] ANN: Py-ART v1.4.0 released

2015-06-09 Thread Jonathan Helmus
_grid". * Improvements to the speed and bug fixes to the region based dealiasing algorithm. * Textures of differential phase fields. (thanks to Scott Collis) * Py-ART now can be used with Python 3.3 and 3.4 Cheers, - Jonathan Helmus ___

Re: [Numpy-discussion] (no subject)

2014-09-18 Thread Jonathan Helmus
On 09/18/2014 12:44 PM, Petr Viktorin wrote: > On Thu, Sep 18, 2014 at 7:14 PM, Jonathan Helmus wrote: >> On 09/18/2014 12:01 PM, Chris Barker wrote: >> >> Well, >> >> First of all, numpy and the python math module have a number of differences >> when it

Re: [Numpy-discussion] (no subject)

2014-09-18 Thread Jonathan Helmus
('inf') // 1) Traceback (most recent call last): File "", line 1, in ValueError: cannot convert float NaN to integer Perhaps float('inf') // 1 should raise a ValueError directly since there is no proper way perform the floor division on infinity. - Jonathan

[Numpy-discussion] Conditionally compiling Fortran 90 extensions using numpy.distutils

2014-06-20 Thread Jonathan Helmus
s aided greatly by information in the NumPy Packinging documentation [2], NumPy Distutils - Users Guide [3], and code from the f2py utils unit tests [4]. Thanks, - Jonathan Helmus nmrglue.com/jhelmus [1] http://docs.scipy.org/doc/numpy/reference/distutils.html#numpy.distutils.misc_ut

Re: [Numpy-discussion] "official" binaries on web page.

2013-10-22 Thread Jonathan Helmus
.rst. I'm sure a Pull requests against that repository would be welcome. You can even do it with an online editor, https://github.com/scipy/scipy.org/edit/master/www/install.rst! - Jonathan Helmus ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] A bug in numpy.random.shuffle?

2013-09-05 Thread Jonathan Helmus
e function can be done by adding a check to see if x[0] is of type numpy.void on line 4429 of numpy/random/mtrand/mtrand.pyx and using the top if block of code which uses a buffer for element swapping if it is. But it wouldn't fix the problem with swapping of re

Re: [Numpy-discussion] A bug in numpy.random.shuffle?

2013-09-05 Thread Jonathan Helmus
) ('', 3) ('', 4)] In [5]: x[0], x[1] = x[1], x[0] In [6]: print x [('', 1) ('', 1) ('', 2) ('', 3) ('', 4)] This is with numpy 1.7.1 Cheers, - Jonathan Helmus Cheers, f --

Re: [Numpy-discussion] RuntimeWarning: divide by zero encountered in log

2013-05-16 Thread Jonathan Helmus
rr(divide='raise') a = np.array([1,1,1], dtype='float32') a / 0 $ python foo.py Traceback (most recent call last): File "test.py", line 6, in a / 0 FloatingPointError: divide by zero encountered in divide Cheers, - Jonathan Helmus _

[Numpy-discussion] Vectorized percentile function in Numpy (PR #2970)

2013-04-23 Thread Jonathan Helmus
st 2970 [3]. With some input from Sebastian Berg the percentile function was rewritten with further vectorization, but neither of us felt fully comfortable with the final product. Can someone look at implementation in the PR and suggest what should be done from here? Cheers, - Jonathan H

Re: [Numpy-discussion] use slicing as argument values?

2012-07-12 Thread Jonathan Helmus
ice object? > > thanks again! > > Chao slice is a build in python function and the online docs explain its use (http://docs.python.org/library/functions.html#slice). b[slice(4,5)] will give you something close to b[4], but not quite the same. In [8]: b[

Re: [Numpy-discussion] Functions for finding the relative extrema of numeric data

2011-09-15 Thread Jonathan Helmus
wnward and find_all_thres): http://code.google.com/p/nmrglue/source/browse/trunk/nmrglue/analysis/peakpick.py http://code.google.com/p/nmrglue/source/browse/trunk/nmrglue/analysis/segmentation.py Let me know if there is an interest in including these in scipy or numpy. -Jonathan Helmus Jacob Silt

Re: [Numpy-discussion] How to output array with indexes to a text file?

2011-08-25 Thread Jonathan Helmus
Paul Menzel wrote: > Dear NumPy folks, > > > is there an easy way to also save the indexes of an array (columns, rows > or both) when outputting it to a text file. For saving an array to a > file I only found `savetxt()` [1] which does not seem to have such an > option. Adding indexes manually is d