diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-09-26 17:43:49 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-09-26 17:43:49 +0000 |
commit | 9af578fae9b87fd15415dc641180cd0e4976bbef (patch) | |
tree | 7259e367f36eaf8dbbc9299812a50f6d1225d498 /numpy/ma | |
parent | 49a78a3dd7e6cf4b98214b975eb08ac93da521e6 (diff) | |
download | numpy-9af578fae9b87fd15415dc641180cd0e4976bbef.tar.gz |
Fix remaining references to numpy.core.defmatrix
Diffstat (limited to 'numpy/ma')
-rw-r--r-- | numpy/ma/API_CHANGES.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ma/API_CHANGES.txt b/numpy/ma/API_CHANGES.txt index cd040be69..7452eb5fa 100644 --- a/numpy/ma/API_CHANGES.txt +++ b/numpy/ma/API_CHANGES.txt @@ -27,7 +27,7 @@ on the initial data:: [[1 2] [3 4]] >>> print type(x._data) - <class 'numpy.core.defmatrix.matrix'> + <class 'numpy.matrixlib.defmatrix.matrix'> In practice, ``_data`` is implemented as a property, not as an attribute. @@ -45,7 +45,7 @@ The function ``filled(a)`` returns an array of the same type as ``a._data``:: >>> x = masked_array(numpy.matrix([[1,2],[3,4]]),mask=[[0,0],[0,1]]) >>> y = filled(x) >>> print type(y) - <class 'numpy.core.defmatrix.matrix'> + <class 'numpy.matrixlib.defmatrix.matrix'> >>> print y matrix([[ 1, 2], [ 3, 999999]]) |