Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc9dfee

Browse files
committed
*** empty log message ***
svn path=/trunk/matplotlib/; revision=386
1 parent 2a7d57f commit dc9dfee

10 files changed

Lines changed: 44 additions & 23 deletions

File tree

.matplotlibrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ image.aspect : free # free | preserve
149149
image.interpolation : bilinear # see help(imshow) for options
150150
image.cmap : jet # gray | jet
151151
image.lut : 256 # the size of the colormap lookup table
152-
image.origin : lower # lower | upper
152+
image.origin : upper # lower | upper
153153

154154
### SAVING FIGURES
155155
# the default savefig params can be different for the GUI backends.

CHANGELOG

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
New entries should be added at the top
2+
3+
2004-07-09 added default arg None to matplotlib.matlab grid command to
4+
toggle current grid state
5+
6+
2004-07-08 fixed a mathtext bug for '6'
7+
8+
2004-07-08 added some numarray bug workarounds
9+
210
=======
311

12+
2004-07-07 0.60 released
13+
414
2004-07-07 Fixed a bug in dynamic_demo_wx
515

616

LICENSE/LICENSE

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LICENSE AGREEMENT FOR MATPLOTLIB 0.60
1+
LICENSE AGREEMENT FOR MATPLOTLIB 0.60.1
22
--------------------------------------
33

44
1. This LICENSE AGREEMENT is between the John D. Hunter ("JDH"), and the
@@ -9,30 +9,30 @@ documentation.
99
2. Subject to the terms and conditions of this License Agreement, JDH
1010
hereby grants Licensee a nonexclusive, royalty-free, world-wide license
1111
to reproduce, analyze, test, perform and/or display publicly, prepare
12-
derivative works, distribute, and otherwise use matplotlib 0.60
12+
derivative works, distribute, and otherwise use matplotlib 0.60.1
1313
alone or in any derivative version, provided, however, that JDH's
1414
License Agreement and JDH's notice of copyright, i.e., "Copyright (c)
1515
2002-2004 John D. Hunter; All Rights Reserved" are retained in
16-
matplotlib 0.60 alone or in any derivative version prepared by
16+
matplotlib 0.60.1 alone or in any derivative version prepared by
1717
Licensee.
1818

1919
3. In the event Licensee prepares a derivative work that is based on or
20-
incorporates matplotlib 0.60 or any part thereof, and wants to
20+
incorporates matplotlib 0.60.1 or any part thereof, and wants to
2121
make the derivative work available to others as provided herein, then
2222
Licensee hereby agrees to include in any such work a brief summary of
23-
the changes made to matplotlib 0.60.
23+
the changes made to matplotlib 0.60.1.
2424

25-
4. JDH is making matplotlib 0.60 available to Licensee on an "AS
25+
4. JDH is making matplotlib 0.60.1 available to Licensee on an "AS
2626
IS" basis. JDH MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
2727
IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, JDH MAKES NO AND
2828
DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
29-
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.60
29+
FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF MATPLOTLIB 0.60.1
3030
WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
3131

3232
5. JDH SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF MATPLOTLIB
33-
0.60 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
33+
0.60.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR
3434
LOSS AS A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING
35-
MATPLOTLIB 0.60, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
35+
MATPLOTLIB 0.60.1, OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF
3636
THE POSSIBILITY THEREOF.
3737

3838
6. This License Agreement will automatically terminate upon a material
@@ -44,6 +44,6 @@ Licensee. This License Agreement does not grant permission to use JDH
4444
trademarks or trade name in a trademark sense to endorse or promote
4545
products or services of Licensee, or any third party.
4646

47-
8. By copying, installing or otherwise using matplotlib 0.60,
47+
8. By copying, installing or otherwise using matplotlib 0.60.1,
4848
Licensee agrees to be bound by the terms and conditions of this License
4949
Agreement.

TODO

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,13 @@
414414

415415
-- check Fernando's bounds problem with pcolor.
416416

417-
-- Write John's Letter
417+
-- DONE Write John's Letter
418418

419-
-- add default args to imshow per Fernando's suggestion
419+
-- DONE add default args to imshow per Fernando's suggestion
420420

421421
-- DONE - check out Fernando's wx prob
422422

423-
-- add interp and aspect info to imshow doc
423+
-- DONE add interp and aspect info to imshow doc
424424

425425
-- add write png method to image module
426426

@@ -438,8 +438,8 @@
438438

439439
-- DONE flush all traces of gtkgd
440440

441-
-- run backend_driver with numeric and numarray (the latter only with
442-
agg)
441+
-- DONE run backend_driver with numeric and numarray (the latter only
442+
with agg)
443443

444444
-- DONE fix vlines raise in matlab.py
445445

@@ -453,4 +453,12 @@
453453

454454
-- DONE reset build flags in setup.py
455455

456-
-- add wxagg extension code to goals
456+
-- add wxagg extension code to goals
457+
458+
-- major and minor ticks for log and major and minor grid on/off
459+
460+
-- make the subplot slider function
461+
462+
-- add colorbar to screenshots
463+
464+
-- add jim's legend patch

examples/backend_driver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def drive(backend):
8989
times = {}
9090
backends = ['PS', 'GD', 'Paint', 'Agg', 'Template']
9191
#backends.extend([ 'GTK', 'WX', 'TkAgg'])
92-
backends = [ 'Agg']
92+
backends = [ 'SVG']
9393
#backends = [ 'Agg', 'PS', 'Template']
9494

9595
for backend in backends:

examples/layer_images.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,13 @@ def func3(x,y):
1616
y = arange(-3.0, 3.0, dy)
1717
X,Y = meshgrid(x, y)
1818

19-
2019
Z1 = array(([0,1]*4 + [1,0]*4)*4); Z1.shape = 8,8 # chessboard
2120
im1 = imshow(Z1, cmap=cm.gray)
2221
im1.set_interpolation('nearest')
2322
hold(True)
2423

2524
Z2 = func3(X, Y)
2625
im2 = imshow(Z2, cmap=cm.jet, alpha=.9)
27-
#im2.set_interpolation('nearest')
2826

2927
#savefig('layer_images')
3028

examples/legend_demo.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/usr/bin/env python
22
# Thanks to Charles Twardy for this example
3+
#
4+
#See http://matplotlib.sf.net/examples/legend_demo2.py for an example
5+
#controlling which lines the legend uses and the order
6+
7+
38
from matplotlib.matlab import *
49

510
a = arange(0,3,.02)

examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
title('About as simple as it gets, folks')
1313
grid(True)
1414
#axis([0,1,-1,1])
15-
#savefig('simple_plot')
15+
savefig('simple_plot')
1616

1717
show()

examples/subplot_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ def f(t):
2424
xlabel('time (s)')
2525
ylabel('Undamped')
2626
#axis([0,2,-1,1])
27-
#savefig('subplot_demo', dpi=300)
27+
savefig('subplot_demo')
2828
show()
2929

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
'linux2' : ['/usr/local', '/usr',],
3737
'linux' : ['/usr/local', '/usr',],
3838
'darwin' : [os.getenv('MPLIB_BASE') or '/usr/local', '/usr', '/sw'],
39-
'freebsd4' : [os.getenv('MBLIB_BASE') or '/usr/local', '/usr'],
39+
'freebsd4' : [os.getenv('MBLIB_BASE') or '/usr/local', '/usr'],
4040
'sunos5' : [os.getenv('MPLIB_BASE') or '/usr/local',],
4141
}
4242

0 commit comments

Comments
 (0)