You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
| 2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
| 2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
| 2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
| 2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
| 2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
| 2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
| 2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
| 2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
| 2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
| 2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
| 2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
| 2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
|
7
|
8
(3) |
9
(5) |
10
(8) |
11
|
12
(4) |
13
|
|
14
|
15
(1) |
16
(6) |
17
(4) |
18
(7) |
19
(3) |
20
|
|
21
|
22
(2) |
23
|
24
|
25
|
26
(1) |
27
(1) |
|
28
(1) |
29
(3) |
30
(2) |
31
|
|
|
|
|
From: John H. <jdh...@ac...> - 2004-03-16 19:11:19
|
What's new in matplotlib-0.52
Image support
Basic image support. Images can be specified by Numeric float arrays
imshow(X)
If X is MxN, assume luminance (grayscale)
If X is MxNx3, assume RGB
If X is MxNx4, assume RGBA
imshow(X, cmap) # plot X using colormap; see examples/pcolor_demo2.py
see help(imshow) and the image_demo*.py examples in the matplotlib
src distribution. Set BUILD_IMAGE in setup.py for image
support. Currently available on Agg, GTKAgg, TkAgg and GTK
backends. win32 GTK users should use GTKAgg unless your pygtk is
compiled with Numeric support.
The pseudocolor images generated with imshow are 8 million times
faster than pcolors.
Figure legends
In addition to adding legends to the axes with the legend command,
you can place legends anywhere in the figure with figlegend
fill command
Andrew Straw wrote a fill command to plot filled polygons. See
fill_demo.py
Make 2D spectrograms with specgram.
Requires image support; see specgram_demo.py
Bugfixes and minor improvements
* Tk : Fixed a close figure bug in interactive mode
* GTK : Much improved mathtext performance thanks to patch by
Trevor Blackwell
* All : Fixed a bug that showed up in successive calls to plot
with just one plot argument
Downloads at
https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=82474&release_id=224080
|
|
From: John H. <jdh...@ac...> - 2004-03-16 14:05:16
|
>>>>> "Martin" == Martin Kuemmel <mku...@es...> writes:
Martin> Hi John, I dont know whether you are the person to write
Martin> to, but I simply try. I am trying to install matplotlib
Martin> on:
Martin> SunOS st13 5.8 Generic_108528-21 sun4u sparc
Martin> SUNW,Sun-Blade-1500
Martin> with gcc 3.3.2.
Martin> In principle it works, and with the PS-backend it gives
Martin> results. I would like to install the agg-backend, but did
Martin> not manage to do so. I just installed the
Martin> freetype2-library, and to include it at its position I
Martin> changed the code in 'setupext.py', module
Martin> 'add_agg_flags(module)', line 94 to;
Martin> module.include_dirs.extend(
Martin> ['/ecfsoft/pyraf1.1/include/freetype2',] )
Martin> module.include_dirs.extend( ['/ecfsoft/pyraf1.1/include',]
Martin> )
Martin> i am still not at home, and I get the error messages:
Martin> Text relocation remains referenced against symbol offset
Martin> in file <unknown> 0x40
Martin> /ecfsoft/pyraf1.1/lib/libz.a(deflate.o) <unknown> 0x4c
Martin> /ecfsoft/pyraf1.1/lib/libz.a(deflate.o) <unknown> 0x58
Martin> /ecfsoft/pyraf1.1/lib/libz.a(deflate.o)
Martin> It seems not to include the libz correctly, but this
Martin> library exists also at '/ecfsoft/pyraf1.1/include' and
Martin> '/ecfsoft/pyraf1.1/lib'.
Martin> What can I do?
Martin> Cheers and thanks in advance, Martin
Martin> P.S.: Please forward this mail to the appropriate person,
Martin> or give me its email address
Hi Martin,
We are very interested in getting a build that works properly under
Solaris so thanks for writing and offering to be the crash test dummy.
I CCd this email to the matplotlib development list since some folks
there know a bit about solaris. You may want to consider joining the
user or development mailing list for future questions -
http://sourceforge.net/mail/?group_id=80706
I suggest you try working with the latest matplotlib snapshot
http://nitace.bsd.uchicago.edu:8080/files/share/matplotlib-0.52c.tar.gz
which has a somewhat improved setupext.py (it also includes basic
image support with the imshow command). Usually to get freetype you
need the dir that includes ft2build.h and the freetype2 include dir in
your include_path.
But it looks like you are getting a link error rather than an include
error. I just posted
"Text relocation remains referenced against symbol offset"
into google and got this result
http://mailman.cs.uchicago.edu/pipermail/swig/2002-April/004435.html.
That post suggests you need the linker flags -Wl,-G
Search google groups with the same error message and you'll get lots
of threads that look helpful.
When you get this working if you can post a modified setupext.py as
well as any additional dependencies and build instructions, that would
be great.
JDH
|
|
From: John H. <jdh...@ac...> - 2004-03-16 13:24:52
|
On OS X 10.3, I can run TkAgg fine, interactive works great from the prompt, etc. However, when I on the figure window to move it or click on a navigation button etc, I get a "SetFrontProcess failed, -606" message and the desired action does not happen. I am running under X11, launching python from an xterm. Do you get this Andrew? Any ideas? JDH |
|
From: John H. <jdh...@ac...> - 2004-03-16 12:44:55
|
>>>>> "Andrew" == Andrew Straw <str...@as...> writes:
Andrew> 2 points:
Andrew> 1) Is there any reason why the Patch class doesn't have
Andrew> get_xdata() and get_ydata() methods? 1b) If not, can we
Andrew> add them and let Axes.add_patch(patch) call
Andrew> "self.xaxis.datalim.update(patch.get_xdata())" ?
I removed this one day when I was trying to improve the painfully slow
pcolor code. The way patches were getting their xlimits was slow.
After spending some time with the profiler, I opted to set the axes
limits manually for scatter and pcolor rather than pay the additional
performance hit in add_patch. This makes the code a little more
difficult to maintain.
Perhaps better than get_xdata is get_xlim. What is the natural xdata
for a circle characterized by a center and radius? xlim is clear. I
added this for Polygon and modified the fill command to use it, and
will add it to the other patch commands and use it in add_patch in due
time. Or feel free to take the lead :-)
Andrew> 2) I think there's still a Polygon facecolor bug. John, I
Andrew> thought you fixed the Polygon facecolor bug -- my
Andrew> patches.py code matches the bugfix you emailed the list,
Andrew> but I still don't get the facecolor with the PS, GTK or
Andrew> Agg backends.
The problem was that you didn't set fill=True in the Polygon
constructor. I added this and it works great. Here is my fill_demo
code - if you have something more impressive for the examples dir send
it along.
from matplotlib.matlab import *
t = arange(0.0, 1.01, 0.01)
s = sin(2*2*pi*t)
fill(t, s*exp(-5*t), 'r')
grid(True)
show()
Changes are in CVS.
Thanks!
JDH
|
|
From: Andrew S. <str...@as...> - 2004-03-16 07:44:42
|
G'day! I've implemented a mostly-matlab-compatible "fill" command. I attach it for your pleasure and hopeful inclusion into matplotlib. (This is an extension of our previous email discussion and involved me going and using matlab for a bit to get a feel for their API.) 2 points: 1) Is there any reason why the Patch class doesn't have get_xdata() and get_ydata() methods? 1b) If not, can we add them and let Axes.add_patch(patch) call "self.xaxis.datalim.update(patch.get_xdata())" ? 2) I think there's still a Polygon facecolor bug. John, I thought you fixed the Polygon facecolor bug -- my patches.py code matches the bugfix you emailed the list, but I still don't get the facecolor with the PS, GTK or Agg backends. Cheers! Andrew |
|
From: Andrew S. <str...@as...> - 2004-03-16 03:27:51
|
On Tuesday, March 16, 2004, at 02:28 AM, John Hunter wrote: > I've added image support in CVS along the lines discussed last week. Great! A quick test shows that the demos work fine over here. A quick note: I had to add the following files to my CVS checkout from the tarball you provided. Could you add these to the CVS distribution? (If it's not SF's CVS servers being flakey?) src/_image.h src/_image.cpp matplotlib/image.py postinstall.py |