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

Skip to content

Commit fd96ef0

Browse files
committed
applied pearus linalg patch
svn path=/trunk/matplotlib/; revision=2243
1 parent 0587629 commit fd96ef0

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

lib/matplotlib/axes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3487,8 +3487,9 @@ def set_xscale(self, value, basex = 10, subsx=None):
34873487
34883488
* basex: base of the logarithm
34893489
3490-
* subsx: the location of the minor ticks; None defaults to autosubs,
3491-
which depend on the number of decades in the plot
3490+
* subsx: the location of the minor ticks; None defaults to
3491+
autosubs, which depend on the number of decades in the
3492+
plot.
34923493
34933494
ACCEPTS: ['log' | 'linear' ]
34943495
"""

lib/matplotlib/numerix/linear_algebra/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
from LinearAlgebra import *
77
elif which[0] == "numpy":
88
from numpy.linalg import *
9+
inverse = inv
10+
eigenvectors = eig
911
try:
1012
from numpy.linalg.old import *
1113
except:

0 commit comments

Comments
 (0)