[matplotlib-devel] improved performance for quiver

2009-06-30 Thread Ray Speth
this information can be used to speed up some other functions as well. Ray Speth -- ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net

[matplotlib-devel] problem with scatter legend entries with dpi != 72

2010-03-13 Thread Ray Speth
exists in version 0.99.1. Thanks, Ray Speth #!/usr/bin/python import matplotlib.pyplot as plt import numpy as np f = plt.figure() f.set_dpi(200) x = np.arange(10) h = plt.scatter(x,-x) g = plt.plot(x,x,'ro-') L = plt.legend([h,g],['scatter','plot']) #f.savefig(

[matplotlib-devel] Patch to extend functionality of Figure.legend

2010-03-15 Thread Ray Speth
strings or object handles. Also, the "loc" argument is made optional, and defaults to the upper right, same as Axes.legend. I hope the attached patch is suitable for inclusion. I have also attached a test script showing each of the call signatures. Thanks, Ray Speth lib/matplot