Re: [Matplotlib-users] 2D Radial Plots

2007-06-25 Thread Benoit Donnet
Hey, That's quite simple. Assume your file containing the data is name Data.dat and is in the same directory than your python script. from pylab import * from numpy import * tab = load('Data.dat') #load the file r = tab[:,0] #get the r coordinates theta = tab[:,1] #get the theta coordinates T

[Matplotlib-users] 2D Radial Plots

2007-06-25 Thread Lorenzo Isella
Dear All, I am quite a newbie about Python and Pylab, but I am starting to like the ease you can develop with using these tools. I am interested in 2D radial plots (think for instance about the plot of the temperature along the cross-section of a pipe). I had a look at the tutorial online, in parti

Re: [Matplotlib-users] Warning message

2007-06-25 Thread Eric Firing
Steve Schmerler wrote: > Beha Online wrote: >> I receive the following message when I import pylab with: "from pylab import >> *": >> >> /usr/lib64/python2.4/site-packages/matplotlib/numerix/__init__.py:67: >> DeprecationWarning: Numeric use as a numerix backed for matplotlib is >> deprecated >> D

Re: [Matplotlib-users] Warning message

2007-06-25 Thread Steve Schmerler
Beha Online wrote: > I receive the following message when I import pylab with: "from pylab import > *": > > /usr/lib64/python2.4/site-packages/matplotlib/numerix/__init__.py:67: > DeprecationWarning: Numeric use as a numerix backed for matplotlib is > deprecated > DeprecationWarning, stacklevel=1

[Matplotlib-users] Warning message

2007-06-25 Thread Beha Online
I receive the following message when I import pylab with: "from pylab import *": /usr/lib64/python2.4/site-packages/matplotlib/numerix/__init__.py:67: DeprecationWarning: Numeric use as a numerix backed for matplotlib is deprecated DeprecationWarning, stacklevel=1) What can be wrong here? I am on