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

Skip to content

Commit c56d8be

Browse files
committed
added group commands
svn path=/trunk/matplotlib/; revision=324
1 parent 0ecfa48 commit c56d8be

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
New entries should be added at the top
22

3+
2004-05-28 Added renderer grouping commands to support groups in
4+
SVG/PS. - JDH
5+
6+
2004-05-28 Fixed, this time I really mean it, the singleton plot
7+
plot([0]) scaling bug; Fixed Flavio's shape = N,1 bug - JDH
8+
39
2004-05-28 added colorbar - JDH
410

511
2004-05-28 Made some changes to the matplotlib.colors.Colormap to

unit/pathologies/const_xy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/usr/bin/env python
22
from matplotlib.matlab import *
33

4-
figure(1)
4+
subplot(311)
55
plot(arange(10), ones( (10,)))
66

77

8-
figure(2)
8+
subplot(312)
99
plot(ones( (10,)), arange(10))
1010

11-
figure(3)
11+
subplot(313)
1212
plot(ones( (10,)), ones( (10,)), 'o')
1313
show()

0 commit comments

Comments
 (0)