summaryrefslogtreecommitdiff
path: root/scipy/base/matrix.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-19 20:49:50 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-19 20:49:50 +0000
commitdc87df7f9c06d35ab172d9961f7c81a0148a212d (patch)
tree53a42f2d291d99ffaaa10da471ebf27862395a07 /scipy/base/matrix.py
parent6c6675d4573bbe0ee2635de009837b8a3776efa7 (diff)
downloadnumpy-dc87df7f9c06d35ab172d9961f7c81a0148a212d.tar.gz
Adding core scipy functions
Diffstat (limited to 'scipy/base/matrix.py')
-rw-r--r--scipy/base/matrix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/matrix.py b/scipy/base/matrix.py
index 83d764b14..04eb46299 100644
--- a/scipy/base/matrix.py
+++ b/scipy/base/matrix.py
@@ -71,7 +71,7 @@ class matrix(N.ndarray):
if dtype is None:
dtype = N.intp
- intype = N.totype(dtype)
+ intype = N.obj2dtype(dtype)
if isinstance(data, types.StringType):
data = _convert_from_string(data)