Re: [Matplotlib-users] Scientific Python Survey

2015-03-02 Thread Alexander Heger
instead of having people enter all this info by hand, you should just write a python script that extracts most of the technical details from the current install, prints it out for cut-and paste into the form or directly sends it to your server. ;-) On 3 March 2015 at 02:23, Thomas Robitaille wrot

Re: [Matplotlib-users] colorsys.hsl_to_rgb(h, s, l), but not matplotlib.colors.hsl_to_rgb(array)

2014-03-29 Thread Alexander Heger
http://2sn.org/python3/color.py On 30 March 2014 07:27, Emilia Petrisor wrote: > Hi all, > > While working on this IPython Notebook > http://nbviewer.ipython.org/github/empet/Math/blob/master/DomainColoring.ipynb > I wanted to compare the visual images of the same complex-valued function > gener

Re: [Matplotlib-users] An interactive plot challenge

2012-01-02 Thread Alexander Heger
very similar: http://www.google.com/finance?hl=en&q=CURRENCY:AUDUSD On 01/02/2012 05:01 AM, Virgil Stokes wrote: > The following link should link you to a very interesting graphical display, > > > http://www.ecb.int/stats/exchange/eurofxref/html/eurofxref-graph-nok.en.html > > This type of g

[Matplotlib-users] axes.py: fix Axes.pcolorfast (style == "pcolorimage") to allow RGB(A) data (version 1.0.0)

2010-10-14 Thread Alexander Heger
mpl version 1.0.0 file: axes.py line: 7214 <<< nr, nc = C.shape === nr, nc = C.shape[:2] >>> ... While you are at it, you could also change line 6759 numRows, numCols = C.shape to numRows, numCols = C.shape[:2] (still some other