Re: [Numpy-discussion] Segmentation fault with pickled numpy float64 arrays since 1.8

2013-12-22 Thread Jonathan Rocher
edora 20, numpy-devel. What OS are you > running? > > Chuck > ___ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > > > > _

[Numpy-discussion] [ANN] 4th Python Symposium at AMS2014

2013-07-17 Thread Jonathan Rocher
://annual.ametsoc.org/2014/index.cfm/programs-and-events/conferences-and-symposia/fourth-symposium-on-advances-in-modeling-and-analysis-using-python/ The *abstract deadline is Aug 1st*! Jonathan -- Jonathan Rocher, PhD Scientific software developer SciPy2013 conference co-chair Enthought, Inc. jroc

Re: [Numpy-discussion] [numfocus] Growing the contributor base of Numpy

2013-03-27 Thread Jonathan Rocher
wrote: > > > > On Tue, Mar 26, 2013 at 8:16 AM, Ralf Gommers wrote: > >> >> >> >> On Mon, Mar 25, 2013 at 7:56 PM, Jonathan Rocher >> wrote: >> >>> Dear all, >>> >>> One recurring question is how to *grow the con

[Numpy-discussion] Growing the contributor base of Numpy

2013-03-25 Thread Jonathan Rocher
during the sprint? * Note that there is less than 1 week left until the tutorial submission deadline. I am happy to help brainstorm on this to make it happen. Thanks, Jonathan and Andy, for the SciPy2013 organizers -- Jonathan Rocher, PhD Scientific software developer SciPy2013 conference co

[Numpy-discussion] [ANN] SciPy2013 Sponsorships: Apply Now!

2013-02-28 Thread Jonathan Rocher
onday, March 25th*. Winners will be announced on April 22nd. Looking forward to a very exciting conference! The SciPy 2013 Financial Aid Chairs Jeff Daily, Pacific Northwest National Lab. John Wiggins, Enthought Inc. -- Jonathan Rocher, PhD Scientific software developer Co-chair of SciPy201

[Numpy-discussion] [ANN] SciPy2013 Tutorials: Call for Submissions

2013-02-28 Thread Jonathan Rocher
e SciPy 2013 Tutorial Chairs Francesc Alted, Continuum Analytics Inc. Dharhas Pothina, Texas Water Development Board -- Jonathan Rocher, PhD Scientific software developer Co-chair of SciPy2013 Conference Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.e

[Numpy-discussion] [ANN] SciPy2013: Call for abstracts

2013-02-27 Thread Jonathan Rocher
[Apologies for cross-posts] Dear all, The annual SciPy Conference (Scientific Computing with Python) allows participants from academic, commercial, and governmental organizations to showcase their latest projects, learn from skilled users and devel

Re: [Numpy-discussion] [SCIPY2013] Feedback on mini-symposia themes

2013-01-23 Thread Jonathan Rocher
nomy/Astrophysics, Bio-informatics, Meteorology, and Geophysics.* * * On Wed, Jan 9, 2013 at 4:32 PM, Jonathan Rocher wrote: > Dear community members, > > We are working hard to organize the SciPy2013 conference (Scientific > Computing with Python) <http://conference.scipy.org/scipy

[Numpy-discussion] [SCIPY2013] Feedback on mini-symposia themes

2013-01-09 Thread Jonathan Rocher
ion to shape the next SciPy conference at: http://www.surveygizmo.com/s3/1114631/SciPy-2013-Themes Thanks, The Scipy2013 organizers -- Jonathan Rocher, PhD Scientific software developer Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.e

[Numpy-discussion] [CONF] Call for papers AMS Jan 6-10 2013

2012-08-01 Thread Jonathan Rocher
. Please pass along this announcement to your friends and colleagues! Thanks! Regards, Jonathan for the organizing committee -- Jonathan Rocher, PhD Scientific software developer Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.enthought.com

Re: [Numpy-discussion] [Numpy] quadruple precision

2012-02-29 Thread Jonathan Rocher
earing it and > implementing the mentioned features, but only if there is any hope of > succeeding. > > > ___ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > -- Jon

Re: [Numpy-discussion] Determining the 'viewness' of an array, and flags.owndata confusion

2012-02-28 Thread Jonathan Rocher
. It's a view > of this other array. > > > If I cannot use flags.owndata, what is a reliable way to determine > > whether or not an array is a view? > > owndata *is* a reliable way to determine whether or not an array is a > view; it just turns out that this is not a very us

Re: [Numpy-discussion] python geospatial package?

2012-02-22 Thread Jonathan Rocher
ussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > > -- Jonathan Rocher, PhD Scientific software developer Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.enthought.com __

Re: [Numpy-discussion] The NumPy Mandelbrot code 16x slower than Fortran

2012-01-22 Thread Jonathan Rocher
> ___ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > -- Jonathan Rocher, PhD Scientific software developer Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http

Re: [Numpy-discussion] Data standardizing

2011-04-13 Thread Jonathan Rocher
ated.. > > > > ___ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > > -- Jonathan Rocher, PhD Scientific software developer Enthought, Inc. jroc...

Re: [Numpy-discussion] einsum

2011-01-26 Thread Jonathan Rocher
nsum(',', 3, c) > array([[ 0, 3, 6], >[ 9, 12, 15]]) > >>> np.multiply(3, c) > array([[ 0, 3, 6], >[ 9, 12, 15]]) > > >>> np.einsum('i,i', b, b) > 30 > >>> np.inner(b,b) > 30 > > >>> np.einsum('i,j', np.arange(2)+1, b) > array([[0, 1, 2, 3, 4], >[0, 2, 4, 6, 8]]) > >>> np.outer(np.arange(2)+1, b) > array([[0, 1, 2, 3, 4], >[0, 2, 4, 6, 8]]) > > >>> np.einsum('i...->', a) > array([50, 55, 60, 65, 70]) > >>> np.sum(a, axis=0) > array([50, 55, 60, 65, 70]) > > >>> a = np.arange(60.).reshape(3,4,5) > >>> b = np.arange(24.).reshape(4,3,2) > >>> np.einsum('ijk,jil->kl', a, b) > array([[ 4400., 4730.], >[ 4532., 4874.], >[ 4664., 5018.], >[ 4796., 5162.], >[ 4928., 5306.]]) > >>> np.tensordot(a,b, axes=([1,0],[0,1])) > array([[ 4400., 4730.], >[ 4532., 4874.], >[ 4664., 5018.], >[ 4796., 5162.], >[ 4928., 5306.]]) > > > ___ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > > -- Jonathan Rocher, Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.enthought.com ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Wiener filter / decorrelation

2011-01-25 Thread Jonathan Rocher
e F77 book. Jonathan On Tue, Jan 25, 2011 at 4:00 PM, Charles R Harris wrote: > > > On Tue, Jan 25, 2011 at 2:26 PM, Daniele Nicolodi wrote: > >> On 25/01/11 22:12, Jonathan Rocher wrote: >> > I would recommend the Numerical recipes in Fortran 77, obviously not for >&

Re: [Numpy-discussion] Wiener filter / decorrelation

2011-01-25 Thread Jonathan Rocher
_ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > -- Jonathan Rocher, Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.enthought.com __

Re: [Numpy-discussion] counting non-zero entries in an ndarray

2010-12-22 Thread Jonathan Rocher
Engineering (C-CDE) > Los Alamos National Laboratory > MS-E543,p:505-665-4323 f:505-665-4267 > > There cannot be a crisis next week. My schedule is already full. >Henry Kissinger > _______ > NumPy-Discussion mailing list > NumPy-Dis

Re: [Numpy-discussion] how to ask numpy what bit version it is running (32/64)

2010-10-19 Thread Jonathan Rocher
#x27;t know any system which enables you do load a 32 bits > extension into a 64 bits. Neither windows, mac or linux can at least, > > cheers, > > David > ___ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org >

Re: [Numpy-discussion] index of a value in an array

2010-10-06 Thread Jonathan Rocher
__ > NumPy-Discussion mailing list > NumPy-Discussion@scipy.org > http://mail.scipy.org/mailman/listinfo/numpy-discussion > -- Jonathan Rocher, Enthought, Inc. jroc...@enthought.com 1-512-536-1057 http://www.enthought.com ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion