Hello all,
I am at a Sage days workshop and one of my goals is to update matplotlib
in Sage. We want to pull from SVN since there are some (very *nice*)
arrow-drawing features only in SVN. Is there any recent commit points
that we want to avoid because of stability? If not, we'll probably
u
I have discovered, from the mailing list, the easy way to draw a circle
in linear space:
cx = 700
cy = 700
r = 1000
xmin = cx - r
xmax = cx + r
ymin = cy - r
ymax = cy + r
cir = Circle( (cx,cx), radius=r,facecolor='w',edgecolor='b')
a = gca()
a.add_patch(cir)
axis([xmin,xmax,ymin,ymax])
axis('
Thank you. I finally upgraded my Ubuntu system, pretty easy, and now pylab
is available. Thank you to everyone on this thread for your input.
BTW, matplotlib is very nicely done, useful, and appreciated.
Marc
Sandro Tosi-4 wrote:
>
> On Wed, Jan 21, 2009 at 15:01, mzs wrote:
>>
>> Thank y
keith.bri...@bt.com wrote:
> At _http://matplotlib.sourceforge.net/_, the "Show Source" link doesn't
> work.
This is because, unlike the other pages, there is no ReST source that is used to
generate the main page. John/Mike, any ideas what to do?
> At _http://matplotlib.sourceforge.net/_, the t
At http://matplotlib.sourceforge.net/, the "Show Source" link doesn't
work.
At http://matplotlib.sourceforge.net/, the table of functions links
"show" to
http://matplotlib.sourceforge.net/api/pyplot_api.html#matplotlib.pyplot.
show, but there is no such function mentioned there.
At http://matplo
that's nice!!! thank you...
anyway, I wanted to take advantage of the Traits implementation of my app...
simone
2009/1/23 eliben :
>
>
>
> Simone Gabbriellini-3 wrote:
>>
>> Dear List,
>>
>> I have some variables I want to plot... the values of those variable
>> change in time... I would like to
Simone Gabbriellini-3 wrote:
>
> Dear List,
>
> I have some variables I want to plot... the values of those variable
> change in time... I would like to plot the result with a traditional
> line plot
>
> those variables are traits of a class (don't know if this can make a
> difference...)
>