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

Skip to content

Commit 7b3996e

Browse files
committed
Merge pull request #1515 from ivanov/set-cmap
set_cmap should not require an active image
2 parents a1f8b4e + b528281 commit 7b3996e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2012-11-16 plt.set_cmap no longer throws errors if there is not already
2+
an active colorable artist, such as an image, and just sets
3+
up the colormap to use from that point forward. - PI
4+
15
2012-11-13 Add a symmetric log normalization class to colors.py.
26
Also added some tests for the normalization class.
37
Till Stensitzki

lib/matplotlib/pyplot.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2027,8 +2027,6 @@ def set_cmap(cmap):
20272027

20282028
if im is not None:
20292029
im.set_cmap(cmap)
2030-
else:
2031-
raise RuntimeError('You must first define an image, eg with imshow')
20322030

20332031
draw_if_interactive()
20342032

0 commit comments

Comments
 (0)