Re: [Matplotlib-users] speeding-up griddata()

2009-07-14 Thread Robert Kern
h new z data set, and then interpolate your grid on the NNInterpolator. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attemp

Re: [Matplotlib-users] speeding-up griddata()

2009-07-14 Thread Robert Kern
On 2009-07-14 12:52, Robert Cimrman wrote: > Robert Kern wrote: >> On 2009-07-13 13:20, Robert Cimrman wrote: >>> Hi all, >>> >>> I would like to use griddata() to interpolate a function given at >>> specified points of a bunch of other points. W

Re: [Matplotlib-users] invisible plot

2009-07-15 Thread Robert Kern
0.,0.1) > y= x**1.5 - 0.25*x**2 > > pyplot.figure(figsize=(9, 6), dpi=120) > pyplot.plot(x, y) pyplot.show() -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though

Re: [Matplotlib-users] ipython --pylab without namespace pollution?

2009-07-22 Thread Robert Kern
mode, but like to use namespaces to keep things clean. ipython -wthread -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread Robert Kern
q1, med, q3 = mlab.prctile(d,[25,50,75]) > > I[36]: q1 > O[36]: 2.0 > > I[37]: med > O[37]: 4.0 > > I[38]: q3 > O[38]: 6.0 > > > Could this be due to a rounding? I don't know, but I am curious to hear > the explanations for this discrepancy.

Re: [Matplotlib-users] incorrect boxplot?

2009-09-14 Thread Robert Kern
On 2009-09-14 16:08 PM, Gökhan Sever wrote: > > > On Mon, Sep 14, 2009 at 3:45 PM, <mailto:jason-s...@creativetrax.com>> wrote: > > Robert Kern wrote: > > prctile does not handle the case where the exact percentile lies > between two >

Re: [Matplotlib-users] contribution offer: griddata with gaussian average

2009-10-04 Thread Robert Kern
p://www.scipy.org/doc/api_docs/SciPy.stats.kde.gaussian_kde.html No. It is probably closer to radial basis function interpolation (in fact, it almost certainly is a form of RBFs): http://docs.scipy.org/doc/scipy/reference/tutorial/interpolate.html#id1 -- Robert Kern "I have come to believe t

Re: [Matplotlib-users] contribution offer: griddata with gaussian average

2009-10-04 Thread Robert Kern
Ryan May wrote: > On Sun, Oct 4, 2009 at 4:21 PM, Robert Kern wrote: >> On 2009-10-04 15:27 PM, Christopher Barker wrote: >>> Václav Šmilauer wrote: >>> >>>> about a year ago I developed for my own purposes a routine for averaging >>>> irregular

Re: [Matplotlib-users] contribution offer: griddata with gaussian average

2009-10-05 Thread Robert Kern
y have entirely different purposes. http://en.wikipedia.org/wiki/Kernel_density_estimation -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth."

Re: [Matplotlib-users] Images and memory management

2009-10-11 Thread Robert Kern
to a dense raster-image matrix > (http://en.wikipedia.org/wiki/Jpeglib). However, PIL does not use make use of such capabilities. It just reads in the data into uncompressed memory just like it does with any other image format. -- Robert Kern "I have come to believe that the whole world

Re: [Matplotlib-users] ImportError: No module named ma

2009-10-12 Thread Robert Kern
n of Python. Apple's version of Python comes with numpy 1.0.1, before numpy.core.ma was introduced. It seems like your installation of numpy 1.3.0 did not override Apple's version. To double-check: >>> import numpy >>> print numpy.__file__ -- Robert Kern &

Re: [Matplotlib-users] ImportError: No module named ma

2009-10-12 Thread Robert Kern
y. numpy.core.ma is not the location of that subpackage anymore. It is now numpy.ma. Upgrade to a more recent matplotlib. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though

Re: [Matplotlib-users] ImportError: No module named ma

2009-10-12 Thread Robert Kern
and manually install it (easy_install --install-dir) I suspect that that version of easy_install has not been fixed to parse Sourceforge's new download pages. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad

Re: [Matplotlib-users] ImportError: No module named ma

2009-10-12 Thread Robert Kern
BTW, please do not Cc: me. I am subscribed to the list and read through GMane. It's annoying to get list replies to my email where I don't want them. On 2009-10-12 15:38 PM, John Hunter wrote: > On Mon, Oct 12, 2009 at 3:21 PM, Robert Kern wrote: >> On 2009-10-12 15:16 PM

Re: [Matplotlib-users] Circular colormaps

2009-11-09 Thread Robert Kern
hroma and hence the largest dynamic range of such a colormap. However, it should be noted that I have found such colormaps to appear a little washed out and drab. But then, I'm colorblind. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is ma

Re: [Matplotlib-users] matplotlib with Qt4 backend

2009-11-12 Thread Robert Kern
Actually, running a program under dtrace while probing those functions makes the problem go away. Sometimes. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlyi

Re: [Matplotlib-users] matplotlib with Qt4 backend

2009-11-12 Thread Robert Kern
On 2009-11-12 16:44 PM, Andrew Straw wrote: > Robert Kern wrote: >> On 2009-11-12 12:05 PM, Andrew Straw wrote: >> >>> Celil Rufat wrote: >>> >>>> I just installed matplotlib on Snow Leopard 10.6 with the Qt4 backend >>>> (via macports). How

Re: [Matplotlib-users] Replying with Thunderbird. Reply All doesn't cut it all the time.

2009-12-07 Thread Robert Kern
is already on the list. I subscribe to the list via the GMane NNTP interface and hate receiving private-looking (hence urgent-looking) replies in my inbox. -- Robert Kern "I have come to believe that the whol

Re: [Matplotlib-users] Import bug for numpy >= 2.0

2010-02-15 Thread Robert Kern
or later is required; you have %s' % numpy.__version__) It's been noted and fixed in SVN. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it a

Re: [Matplotlib-users] Trouble gridding irregularly spaced data

2010-02-16 Thread Robert Kern
ntours explicitly. It's not a problem with your points lying inside a triangle. There is some other problem with the construction of the Delaunay triangulation. Sometimes the algorithm fails. This is one way that it fails. -- Robert Kern "I have come to believe that the whole worl

Re: [Matplotlib-users] Bug: string.letters

2010-03-09 Thread Robert Kern
RSTUVWXYZ' > > In [3]:import locale > > In [4]:locale.getpreferredencoding () > Out[4]:'UTF-8' > > In [5]:string.letters > Out[5]:'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' PyGTK calls locale.setlocale() and thus may be affecting

Re: [Matplotlib-users] Contour Plotting of Varied Data on a Shape

2010-03-11 Thread Robert Kern
gt; the triangulation. Yes, it would use the existing delaunay code by > default, and hopefully optionally use the not-as-good-a-license code the > Robert Kern put in SciPy. I did what now? -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enig

Re: [Matplotlib-users] Contour Plotting of Varied Data on a Shape

2010-03-11 Thread Robert Kern
On 2010-03-11 15:49 PM, Chris Barker wrote: > Robert Kern wrote: >>> the triangulation. Yes, it would use the existing delaunay code by >>> default, and hopefully optionally use the not-as-good-a-license code the >>> Robert Kern put in SciPy. >> >> I did w

Re: [Matplotlib-users] ipython pylab switch, GDAL, Enthought

2010-04-13 Thread Robert Kern
d to the > Enthought numpy creates the Bus Error? Not so much a double import. Only one version ever gets imported, but the GDAL Python bindings expect its version and matplotlib expects another version. > If so, how can I avoid it? You would have to rebuild the GDAL Python bindings ag

Re: [Matplotlib-users] ipython pylab switch, GDAL, Enthought

2010-04-13 Thread Robert Kern
case > (Tried ReadAsArray from a gdal dataset and imshow'ed it without problems, > apart from that I had to call show() because of the lack of the -pylab > switch, but other than that, fine). Hmm, don't know. Getting a gdb traceback for the bus error would help identify the proble

Re: [Matplotlib-users] ipython pylab switch, GDAL, Enthought

2010-04-13 Thread Robert Kern
it's been getting pretty bad recently. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth.

Re: [Matplotlib-users] scipy, matplotlib import errors

2008-09-25 Thread Robert Kern
out new.__file__ just before where the exception occurs. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it h

Re: [Matplotlib-users] matplotlib egg finds wrong version of numpy

2008-11-17 Thread Robert Kern
te-packages (which must have > been delivered with the OS). No, /opt/local is MacPorts territory. > How can I tell the egg where to find the > proper version of numpy? Thanks! Are you sure you are using the same versions of Python to run and install both of these? -- Robert Ke

Re: [Matplotlib-users] matplotlib egg finds wrong version of numpy

2008-11-18 Thread Robert Kern
nstead. The Python executable that gets run by the easy_install script is the one which the eggs get installed for. http://pypi.python.org/pypi/setuptools -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our ow

Re: [Matplotlib-users] matplotlib egg finds wrong version of numpy

2008-11-18 Thread Robert Kern
quot; for more information. $ /Library/Frameworks/Python.framework/Versions/Current/bin/python Python 2.5.1 (r251:54869, Apr 18 2007, 22:08:04) [GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin Type "help", "copyright", "credits" or "license" for mor

Re: [Matplotlib-users] matplotlib egg finds wrong version of numpy

2008-11-18 Thread Robert Kern
binaries in /opt/local/bin). I > have recently migrated from PPC to Intel Mac, and I suspect that the > migration assistant may have been too thorough... Your PYTHONPATH may also be messed up. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmles

Re: [Matplotlib-users] Problem Using/Installing the matplotlib

2009-02-10 Thread Robert Kern
a problem with ccompiler, but ccompiler.py is on that >> directory. It looks like you have a problem with your PYTHONPATH. You shouldn't have c:\Python25\Lib\site-packages\numpy\ on your PYTHONPATH. Show me your PYTHONPATH, and I can point out what else is wrong. -- Robert Kern &quo

Re: [Matplotlib-users] Problem Using/Installing the matplotlib

2009-02-10 Thread Robert Kern
PYTHONPATH or sys.path. It is the directory that *contains* your packages that needs to be on the sys.path; but as I already noted, site-packages is built in, so you don't need to add it yourself. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless

Re: [Matplotlib-users] plot a triangular mesh

2009-05-23 Thread Robert Kern
suggestion or not. delaunay has a linear interpolator implemented in C++ that could be used for this purpose, too. The natural neighbor interpolator is only for Delaunay triangulations, but the linear interpolator should be usable for general triangulations. -- Robert Kern "I have come to b

Re: [Matplotlib-users] plot a triangular mesh

2009-05-26 Thread Robert Kern
hould be able to figure out how to use the underlying utility functions compute_planes() and linear_interpolate_grid() from the LinearInterpolator code and Triangulation's docstring to describe its attributes. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enig

Re: [Matplotlib-users] missing library animation from enthought distribution

2011-11-22 Thread Robert Kern
to build it yourself from sources. You can remove EPD's matplotlib 1.0.1 like so: $ enpkg --remove matplotlib -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad atte

Re: [Matplotlib-users] cannot import animation module

2011-11-23 Thread Robert Kern
e was added in matplotlib 1.1.0. You will have to install that version instead. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underl

Re: [Matplotlib-users] How to keep only the x first terms of an array(numpy)?

2012-01-30 Thread Robert Kern
ked this question on scipy-user and received a correct answer. http://www.scipy.org/Mailing_Lists -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had

Re: [Matplotlib-users] how to plot the empirical cdf of an array?

2010-07-09 Thread Robert Kern
s no such thing as an unnormalized empirical CDF. Alan's code is good. Unless if you have a truly staggering number of points, there is no reason to bin the data first. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terri

Re: [Matplotlib-users] how to plot the empirical cdf of an array?

2010-07-09 Thread Robert Kern
use one of the "steps" linestyles; I'm not sure which one would be best. It probably doesn't matter much. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it

Re: [Matplotlib-users] CMYK images

2010-08-26 Thread Robert Kern
t it > might get the OP out of a bind with minimal work, and he'd have a > little eps2cmyk.py script he could run on his MPL-generated EPS files > for colorspace conversion. Just an afternoon hack. :) You can also use my numpy-aware wrappers: http://www.enthought.com/~rkern/cgi-

Re: [Matplotlib-users] matplotlib.delauney with periodic boundary conditions

2010-10-22 Thread Robert Kern
he > periodic boundary conditions into account, or alter the points I input such > that matplotlib.delaunay interprets them as being on the surface of the > torus. No, there isn't. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma tha

Re: [Matplotlib-users] matplotlib.delauney with periodic boundary conditions

2010-10-22 Thread Robert Kern
grid, then pull out the center. That's probably close enough. There's some bookkeeping left as an exercise for the reader, but it's nothing unreasonable. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by o

Re: [Matplotlib-users] Possible memory leak?

2010-11-18 Thread Robert Kern
retty easily, though. Call gc.collect() then examine the list gc.garbage. This will contain all of those objects with a __del__ that prevented a cycle from being collected. I recommend using objgraph to diagram the graph of references to those objects. It's invaluable to actually see what&

Re: [Matplotlib-users] [SciPy-User] use matplotlib to produce mathathematical expression only

2011-05-16 Thread Robert Kern
ut mathtex. It is matplotlib's TeX parsing engine and renderer broken out into a separate library: http://code.google.com/p/mathtex/ Also, please send matplotlib questions just to the matplotlib list. Thanks. -- Robert Kern "I have come to believe that the whole world is an enigma, a

Re: [Matplotlib-users] use matplotlib to produce mathathematical expression only

2011-05-16 Thread Robert Kern
On Mon, May 16, 2011 at 09:23, Johannes Radinger wrote: > > Original-Nachricht >> Datum: Mon, 16 May 2011 08:28:49 -0500 >> Von: Robert Kern >> An: SciPy Users List >> CC: matplotlib-users@lists.sourceforge.net >> Betreff: Re: [Matplotlib-u

Re: [Matplotlib-users] installing numpy, matplotlib, scipy from source on a Mac

2007-01-10 Thread Robert Kern
nd unavoidably attempted. > WX / MATPLOTLIB FAILURE > ------ > > 4 % python Try running with pythonw. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to

Re: [Matplotlib-users] installing numpy, matplotlib, scipy from source on a Mac

2007-01-10 Thread Robert Kern
John Hunter wrote: >>>>>> "Robert" == Robert Kern <[EMAIL PROTECTED]> writes: > > Robert> Personally, I think the warnings are a bit overzealous and > Robert> should be silenced. It's not as if the user is explicitly >

Re: [Matplotlib-users] installing numpy, matplotlib, scipy from source on a Mac

2007-01-10 Thread Robert Kern
belinda thom wrote: > Robert, > >> Try running with pythonw. > > Do you know how to fix this in IDLE (it must be using python as > opposed to pythonw somehow). I'm afraid that I don't know enough about IDLE to help you. -- Robert Kern "I have come t

Re: [Matplotlib-users] installing numpy, matplotlib, scipy from source on a Mac

2007-01-10 Thread Robert Kern
off numpy-discussion, it's not relevant there). -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth

Re: [Matplotlib-users] installing numpy, matplotlib, scipy from source on a Mac

2007-01-10 Thread Robert Kern
belinda thom wrote: > Hi, > > On Jan 10, 2007, at 5:56 PM, Robert Kern wrote: > >> belinda thom wrote: >>> I went back and retried the plotting w/wx >>> as a backend and discovered that wx FAILS with PYTHONW and PYTHON >>> (appended). >> O

Re: [Matplotlib-users] installing numpy, matplotlib, scipy from source on a Mac

2007-01-11 Thread Robert Kern
ng the wxAgg back-end against that > version of wx, which is not the one you want. Try this: Yes, thank you for figuring that out! That's the part that I forgot about. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terr

Re: [Matplotlib-users] Newbie trying to get matplotlib up and running on Mac mini.....

2007-02-05 Thread Robert Kern
med matplotlib.pylab Hrmm. Unfortunately, the matplotlib package in (at least) the Intel version is still missing matplotlib/__init__.py. You can download the file from here: http://matplotlib.svn.sourceforge.net/viewvc/*checkout*/matplotlib/trunk/matplotlib/lib/matplotlib/__init__.py?revision=

Re: [Matplotlib-users] Newbie trying to get matplotlib up and running on Mac mini.....

2007-02-06 Thread Robert Kern
it supports? I only see _ns_backend_agg.so and _tkagg.so so I imagine it only support TkAgg for the GUI (and possibly whatever backends that don't require extension modules). -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made

Re: [Matplotlib-users] backends issue

2007-02-21 Thread Robert Kern
k.py", > line 6, in ? > import gobject > ImportError: No module named gobject > > What can I do? Install PyGTK. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as thou

Re: [Matplotlib-users] Possible to use SciPy instead of NumPy?

2007-03-27 Thread Robert Kern
;numerix' will make your code difficult to understand. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had

Re: [Matplotlib-users] matplotlib and py2exe

2007-03-31 Thread Robert Kern
uot;, line 1, in ? > File "matplotlib\pylab.pyc", line 199, in ? > File "matplotlib\cm.pyc", line 5, in ? > File "matplotlib\colors.pyc", line 33, in ? > File "matplotlib\numerix\__init__.pyc", line 147, in ? > ImportError: No module named random

Re: [Matplotlib-users] problems building/installing

2007-04-04 Thread Robert Kern
Tim Hirzel wrote: > Its a little tough right now that os x doesn't have one python > install to rule them all. Yes it does. http://www.python.org/download/ -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terribl

Re: [Matplotlib-users] freetypelib problem scipy superpack matplotlib

2007-05-04 Thread Robert Kern
> one Apple provides doesn't work with MPL. No, it was built against a dynamic freetype library which was not included with the package. If it had been statically linked, there wouldn't be a problem. -- Robert Kern "I have come to believe that the whole world is an enigma, a ha

Re: [Matplotlib-users] freetypelib problem scipy superpack matplotlib

2007-05-04 Thread Robert Kern
Samuel M. Smith wrote: > So the conclusion is pythonmac matplotlib uses a statically linked > freetype so it doesn't look into /usr/local/lib > and Fonnesbeck's scipy superpack matplotlib is using a dynamically > linked freetype which is looking into /usr/local/lib Yes

Re: [Matplotlib-users] freetypelib problem scipy superpack matplotlib

2007-05-04 Thread Robert Kern
Robert Kern wrote: > Christopher Barker wrote: >> Samuel M. Smith wrote: >>> I did not have this problem with the matplotlib on >>> http://pythonmac.org/packages/py25-fat/dmg/matplotlib-0.90.0-py2.5-macosx10.4-2007-02-20.dmg >> That one was probably built with a s

Re: [Matplotlib-users] use of enthought Python for matplotlib/numpy

2007-05-11 Thread Robert Kern
add extra donuts ;) While we at Enthought are not updating the all-in-one installer anymore, we are distributing up-to-date binaries as eggs. http://code.enthought.com/enstaller/ -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made t

Re: [Matplotlib-users] All-in-one distribution of python/numpy/scipy/mpl for windows

2007-05-14 Thread Robert Kern
or the Mac, though. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco

Re: [Matplotlib-users] All-in-one distribution of python/numpy/scipy/mpl for windows

2007-05-14 Thread Robert Kern
Christopher Barker wrote: > Robert Kern wrote: >> Mark Bakker wrote: >>> I think it would be very useful to have one installer that gets a >>> reasonable distrubtion installed (like the old Enthought installer). >>> Isn't something like that in the works

Re: [Matplotlib-users] plot cdf

2007-09-26 Thread Robert Kern
oat(n), 2), 1.0]) pylab.plot(x2, y2) -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth.&quo

Re: [Matplotlib-users] Automatic Marker Generation

2007-10-04 Thread Robert Kern
est one. """ return itertools.cycle([ 'o','^','v','<','>', 's','+','x','D','d', '1','2','3','4','h

Re: [Matplotlib-users] Basemap - ImportError: libgeos_c.so.1

2007-12-15 Thread Robert Kern
Jeff Whitaker wrote: > Dave: Perhaps you need to add /usr/local to LD_LIBRARY_PATH? It would be /usr/local/lib, not /usr/local -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it a

Re: [Matplotlib-users] Bogus colour gradients in imshow()

2008-03-17 Thread Robert Kern
ixel in the colormap. This would give more reasonable results even with misapplied colormaps. However, it will probably be less efficient to implement. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own m

Re: [Matplotlib-users] scipy, matplotlib import errors

2008-04-01 Thread Robert Kern
packages/pkg_resources.py", line 1712, > in _handle_ns > module = sys.modules[packageName] = new.module(packageName) > AttributeError: 'module' object has no attribute 'module' You have a new.py module somewhere which is interfering with the s

Re: [Matplotlib-users] Prism colormap

2008-04-07 Thread Robert Kern
Rich Fought wrote: > The prism colormap repeats the same pattern over and over instead of > spreading itself over the plotted data range in a pcolor plot. Is this > expected behavior? Yup. prism and flag are designed to repeat. -- Robert Kern "I have come to believe that the

Re: [Matplotlib-users] Kriging with Matplotlib

2008-05-16 Thread Robert Kern
sian processes (covariance functions, etc.). http://code.google.com/p/random-realizations/ http://www.enthought.com/~rkern/cgi-bin/hgwebdir.cgi/gp/ Anand has been doing more work on RandomRealizations than I have on gp, so try it first. -- Robert Kern "I have come to believe that

Re: [Matplotlib-users] can't get started

2006-06-02 Thread Robert Kern
paste the exact error message here. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco ___

Re: [Matplotlib-users] bug in numerix?

2006-09-26 Thread Robert Kern
ide effect. If you don't want this, then you can configure ipython to import everything you want from numpy *after* pylab. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as t

Re: [Matplotlib-users] tex problem

2006-10-31 Thread Robert Kern
of the object is treated. label = r'$\textrm{test}_2$' xlabel(label) After the source code containing the string literal is parsed, the string is simply a string. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made t

Re: [Matplotlib-users] How do I include the stop value in the array by using arrayrange?

2006-11-17 Thread Robert Kern
name. 2. However, arange() with floating point numbers is unreliable. Because of floating point precision issues, it is often difficult to tell whether or not the endpoint will be included. Use linspace() instead. -- Robert Kern "I have come to believe that the whole world is an enigma, a h