Re: [matplotlib-devel] Matplotlib-devel Digest, Vol 36, Issue 1
Hello list, After having installed matplotlib 0.98.5.2 on a windows XP system using the installer from the website, it didn't run since msvcp71.dll was missing. I certainly know where to get it from, so I was able to solve the problem, but generally, Microsoft changed their policy such that MSVCP71.dll should be distributed with any software that needs it. So, it should be shipped with matplotlib. Per request on the matplotlib website, I both filed a bug at sourceforge (ID: 2787740) as well as writing to this list. Greetings Martin Teichmann -- The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your production scanning environment may not be a perfect world - but thanks to Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 Series Scanner you'll get full speed at 300 dpi even with all image processing features enabled. http://p.sf.net/sfu/kodak-com ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
[matplotlib-devel] DeprecationWarning message fix for polyfit
Correcting function spelling (poyfit->polyfit) error in depreciation warning. Index: trunk/matplotlib/lib/matplotlib/mlab.py === --- trunk/matplotlib/lib/matplotlib/mlab.py (revision 7087) +++ trunk/matplotlib/lib/matplotlib/mlab.py (working copy) @@ -617,7 +617,7 @@ :func:`polyval` polyval function """ - warnings.warn("use numpy.poyfit", DeprecationWarning) + warnings.warn("use numpy.polyfit", DeprecationWarning) return np.polyfit(*args, **kwargs) -- The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your production scanning environment may not be a perfect world - but thanks to Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 Series Scanner you'll get full speed at 300 dpi even with all image processing features enabled. http://p.sf.net/sfu/kodak-com ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
Re: [matplotlib-devel] DeprecationWarning message fix for polyfit
Aleksandar Veselinovic wrote: > Correcting function spelling (poyfit->polyfit) error in depreciation > warning. Fixed in 7088. Thank you. Eric > > > Index: trunk/matplotlib/lib/matplotlib/mlab.py > === > --- trunk/matplotlib/lib/matplotlib/mlab.py (revision 7087) > +++ trunk/matplotlib/lib/matplotlib/mlab.py (working copy) > @@ -617,7 +617,7 @@ > :func:`polyval` > polyval function > """ > -warnings.warn("use numpy.poyfit", DeprecationWarning) > +warnings.warn("use numpy.polyfit", DeprecationWarning) > return np.polyfit(*args, **kwargs) > -- > The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your > production scanning environment may not be a perfect world - but thanks to > Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 > Series Scanner you'll get full speed at 300 dpi even with all image > processing features enabled. http://p.sf.net/sfu/kodak-com > ___ > Matplotlib-devel mailing list > Matplotlib-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel -- The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your production scanning environment may not be a perfect world - but thanks to Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 Series Scanner you'll get full speed at 300 dpi even with all image processing features enabled. http://p.sf.net/sfu/kodak-com ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
Re: [matplotlib-devel] Rasterized artists have wrong transform
The patches are now committed to the trunk (r7089, 7090, 7091). Regards, -JJ On Tue, May 5, 2009 at 5:16 PM, Eric Bruning wrote: > Thanks for your work on this patch JJ, glad to see it ready to go! > -- The NEW KODAK i700 Series Scanners deliver under ANY circumstances! Your production scanning environment may not be a perfect world - but thanks to Kodak, there's a perfect scanner to get the job done! With the NEW KODAK i700 Series Scanner you'll get full speed at 300 dpi even with all image processing features enabled. http://p.sf.net/sfu/kodak-com ___ Matplotlib-devel mailing list Matplotlib-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/matplotlib-devel