From 2ce89736eed3a1b7f4775623a6ed1b77d777589f Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 30 Apr 2018 20:30:18 -0400 Subject: [PATCH] Modified the plot width of the matshow example in order to fit margins of documentation webpage. --- examples/images_contours_and_fields/matshow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/images_contours_and_fields/matshow.py b/examples/images_contours_and_fields/matshow.py index 376ba514dc00..ce940670a7c2 100644 --- a/examples/images_contours_and_fields/matshow.py +++ b/examples/images_contours_and_fields/matshow.py @@ -18,6 +18,6 @@ def samplemat(dims): # Display matrix -plt.matshow(samplemat((15, 35))) +plt.matshow(samplemat((15, 15))) plt.show()