We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37fb571 commit 0acffedCopy full SHA for 0acffed
CHANGELOG
@@ -1,3 +1,6 @@
1
+2006-03-14 Added import of compatibility library for newer numpy
2
+ linear_algebra - TEO
3
+
4
2006-03-12 Extended "load" function to support individual columns and
5
moved "load" and "save" into matplotlib.mlab so they can be
6
used outside of pylab -- see examples/load_converter.py -
lib/matplotlib/numerix/linear_algebra/__init__.py
@@ -6,5 +6,9 @@
from LinearAlgebra import *
7
elif which[0] == "numpy":
8
from numpy.linalg import *
9
+ try:
10
+ from numpy.linalg.old import *
11
+ except:
12
+ pass
13
else:
14
raise RuntimeError("invalid numerix selector")
0 commit comments