Revision: 5698 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5698&view=rev Author: mdboom Date: 2008年06月30日 05:13:55 -0700 (2008年6月30日) Log Message: ----------- Fixed inverse of natural log bug. (Thanks, Ryan May) Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/scale.py Modified: trunk/matplotlib/lib/matplotlib/scale.py =================================================================== --- trunk/matplotlib/lib/matplotlib/scale.py 2008年06月28日 13:50:45 UTC (rev 5697) +++ trunk/matplotlib/lib/matplotlib/scale.py 2008年06月30日 12:13:55 UTC (rev 5698) @@ -134,7 +134,7 @@ return ma.power(np.e, a) / np.e def inverted(self): - return LogScale.Log2Transform() + return LogScale.NaturalLogTransform() class LogTransform(Transform): input_dims = 1 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.