You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(115) |
Aug
(120) |
Sep
(137) |
Oct
(170) |
Nov
(461) |
Dec
(263) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(120) |
Feb
(74) |
Mar
(35) |
Apr
(74) |
May
(245) |
Jun
(356) |
Jul
(240) |
Aug
(115) |
Sep
(78) |
Oct
(225) |
Nov
(98) |
Dec
(271) |
2009 |
Jan
(132) |
Feb
(84) |
Mar
(74) |
Apr
(56) |
May
(90) |
Jun
(79) |
Jul
(83) |
Aug
(296) |
Sep
(214) |
Oct
(76) |
Nov
(82) |
Dec
(66) |
2010 |
Jan
(46) |
Feb
(58) |
Mar
(51) |
Apr
(77) |
May
(58) |
Jun
(126) |
Jul
(128) |
Aug
(64) |
Sep
(50) |
Oct
(44) |
Nov
(48) |
Dec
(54) |
2011 |
Jan
(68) |
Feb
(52) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(12) |
2
(3) |
3
(2) |
4
(15) |
5
(4) |
6
(8) |
7
(14) |
8
(10) |
9
(6) |
10
(1) |
11
(5) |
12
(7) |
13
(7) |
14
(1) |
15
|
16
(1) |
17
(2) |
18
(4) |
19
(2) |
20
|
21
(1) |
22
(2) |
23
|
24
|
25
(2) |
26
(1) |
27
|
28
(4) |
29
|
30
(1) |
31
|
|
|
|
|
|
|
Revision: 6048 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6048&view=rev Author: jswhit Date: 2008年08月22日 19:19:29 +0000 (2008年8月22日) Log Message: ----------- fix quiver so masked values not plotted. Modified Paths: -------------- trunk/matplotlib/CHANGELOG Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008年08月22日 19:19:07 UTC (rev 6047) +++ trunk/matplotlib/CHANGELOG 2008年08月22日 19:19:29 UTC (rev 6048) @@ -1,3 +1,5 @@ +2008年08月22日 fix quiver so masked values are not plotted - JSW + 2008年08月18日 improve interactive pan/zoom in qt4 backend on windows - DSD 2008年08月11日 Fix more bugs in NaN/inf handling. In particular, path simplification This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 6047 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6047&view=rev Author: jswhit Date: 2008年08月22日 19:19:07 +0000 (2008年8月22日) Log Message: ----------- fix quiver so masked values are not plotted. Modified Paths: -------------- trunk/matplotlib/examples/pylab_examples/quiver_demo.py trunk/matplotlib/lib/matplotlib/quiver.py Modified: trunk/matplotlib/examples/pylab_examples/quiver_demo.py =================================================================== --- trunk/matplotlib/examples/pylab_examples/quiver_demo.py 2008年08月21日 15:29:12 UTC (rev 6046) +++ trunk/matplotlib/examples/pylab_examples/quiver_demo.py 2008年08月22日 19:19:07 UTC (rev 6047) @@ -9,6 +9,7 @@ ''' from pylab import * +from numpy import ma X,Y = meshgrid( arange(0,2*pi,.2),arange(0,2*pi,.2) ) U = cos(X) @@ -64,6 +65,20 @@ axis([-1, 7, -1, 7]) title("triangular head; scale with x view; black edges") +#6 +figure() +M = zeros(U.shape, dtype='bool') +M[U.shape[0]/3:2*U.shape[0]/3,U.shape[1]/3:2*U.shape[1]/3] = True +U = ma.masked_array(U, mask=M) +V = ma.masked_array(V, mask=M) +Q = quiver( U, V) +qk = quiverkey(Q, 0.5, 0.92, 2, r'2ドル \frac{m}{s}$', labelpos='W', + fontproperties={'weight': 'bold'}) +l,r,b,t = axis() +dx, dy = r-l, t-b +axis([l-0.05*dx, r+0.05*dx, b-0.05*dy, t+0.05*dy]) +title('Minimal arguments, no kwargs - masked values') + show() Modified: trunk/matplotlib/lib/matplotlib/quiver.py =================================================================== --- trunk/matplotlib/lib/matplotlib/quiver.py 2008年08月21日 15:29:12 UTC (rev 6046) +++ trunk/matplotlib/lib/matplotlib/quiver.py 2008年08月22日 19:19:07 UTC (rev 6047) @@ -334,6 +334,12 @@ def __init__(self, ax, *args, **kw): self.ax = ax X, Y, U, V, C = self._parse_args(*args) + if C is not None: + X, Y, U, V, C = delete_masked_points(X.ravel(),Y.ravel(),U.ravel(), + V.ravel(),C.ravel()) + else: + X, Y, U, V = delete_masked_points(X.ravel(),Y.ravel(),U.ravel(), + V.ravel()) self.X = X self.Y = Y self.XY = np.hstack((X[:,np.newaxis], Y[:,np.newaxis])) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.