if you reside in the San Francisco Bay Area, you may be interested in
a meeting we'll be having tomorrow November 4 (2-4 pm), as part of our
regular py4science meeting series. Guido van Rossum, the creator of
the Python language, will visit for a session where we will first do a
very rapid overview of a number of scientific projects that use Python
(in a lightning talk format) and then we will have an open discussion
with Guido with hopefully interesting questions going in both
directions. The meeting is open to all, bring your questions!
More details on this seminar series (including location) can be found here:
https://cirl.berkeley.edu/view/Py4Science
Cheers,
f
_______________________________________________
SciPy-User mailing list
SciPy...@scipy.org
http://mail.scipy.org/mailman/listinfo/scipy-user
> if you reside in the San Francisco Bay Area, you may be interested in
> a meeting we'll be having tomorrow November 4 (2-4 pm), as part of our
> regular py4science meeting series. Guido van Rossum, the creator of
> the Python language, will visit for a session where we will first do a
> very rapid overview of a number of scientific projects that use Python
> (in a lightning talk format) and then we will have an open discussion
> with Guido with hopefully interesting questions going in both
> directions. The meeting is open to all, bring your questions!
Video of the event:
http://www.archive.org/details/ucb_py4science_2009_11_04_Guido_van_Rossum
Slides: http://fperez.org/py4science/2009_guido_ucb/index.html
A few blog posts about it:
- Guido: http://neopythonic.blogspot.com/2009/11/python-in-scientific-world.html
- Jarrod: http://jarrodmillman.blogspot.com/2009/11/visit-from-guido-van-rossum.html
- Matthew: http://nipyworld.blogspot.com/2009/11/guido-van-rossum-talks-about-python-3.html
- Me: http://fdoperez.blogspot.com/2009/11/guido-van-rossum-at-uc-berkeleys.html
Attendance was excellent (standing room only, and I saw some people
leave because it was too full). Many thanks to all the presenters!
From the silent majority who lurk here, many thanks to you Fernando for
setting this up (and for IPython). It is wonderful to know that the
concerns and achievements of scientific computing in Python are on the
radar of the group of people responsible for leading the language. If
you have thoughts on how the wider community can contribute to this sort
of communication in the future, please share.
-Neil
Yes, thank you Fernando. If you are at liberty to comment further on
discussions concerning parallel computing and the GIL, I would be very
interested to hear about it.
Darren
-- Karl
I haven't checked.. you might try the books of Apostol (mathematical
analysis), Courant and John, or Numerical recipes on this.
bye
Nicky
2009/11/9 Karl Young <karl....@ucsf.edu>:
Thanks for the tips,
-- Karl
Take a look at
http://eom.springer.de/w/w097450.htm
just before the references, or
http://en.wikipedia.org/wiki/Weierstrass's_elliptic_functions#Relation_to_Jacobi_elliptic_functions
just before the references.
--
Enjoy global warming while it lasts.
/usr/local/lib/python2.6/dist-packages/scikits.timeseries-0.91.1-py2.6-linux-x86_64.egg/scikits/timeseries/tseries.pyc in __call__(self, *args, **params)
471 (_dates, _series) = (instance._dates, instance._series)
472 func = getattr(_series, self.__name__)
--> 473 result = func(*args, **params)
474 if _dates.size != _series.size:
475 axis = params.get('axis', None)
/usr/local/lib/python2.6/dist-packages/numpy-1.3.0-py2.6-linux-x86_64.egg/numpy/ma/core.pyc in sum(self, axis, dtype, out)
3675 # No explicit output
3676 if out is None:
-> 3677 result = self.filled(0).sum(axis, dtype=dtype).view(type(self))
3678 if result.ndim:
3679 result.__setmask__(newmask)
AttributeError: 'float' object has no attribute 'view'
I don't get this error when trying a sum on a TimeSeries object. I noticed you
are using an older version of the timeseries module. Can you try upgrading to
the latest version and see if you still get an error? Also, if you still get
the error please post a small example demonstrating how to get the error,
thanks.
Also, note that we will probably be doing a new minor bug fix release within
the next week or two.
- Matt
In [74]: data = npy.array([-1840.0,-1550.0,-940.0,2660.0,190.0,3980.0,1130.0,2090.0,1980.0,1220.0,-1220.0,1140.0,-2420.0,2200.0,370.0,230.0,-60.0,2550.0,970.0,660.0,-20.0,50.0,-980.0,6580.0,4090.0,3240.0,-350.0,-1800.0,2020.0,5050.0,-110.0,-330.0,-2290.0], dtype=npy.object)
In [75]: dates = "Mar-2007","Apr-2007","May-2007","Jun-2007","Jul-2007","Aug-2007","Sep-2007","Oct-2007","Nov-2007","Dec-2007","Jan-2008","Feb-2008","Mar-2008","Apr-2008","May-2008","Jun-2008","Jul-2008","Aug-2008","Sep-2008","Oct-2008","Nov-2008","Dec-2008","Jan-2009","Feb-2009","Mar-2009","Apr-2009","May-2009","Jun-2009","Jul-2009","Aug-2009","Sep-2009","Oct-2009","Nov-2009"
In [76]: series = ts.time_series(data,dates, freq="M")
>
> actually i figured that out it throws that error when data array is of dtype object
Confirmed. The bug is in numpy.ma, I'll check that later this evening...