diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-29 09:23:46 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-29 09:23:46 +0000 |
commit | ca2d4dc36cd735c76f895d86e8424099603a9fed (patch) | |
tree | 142d564f27b86920c8ce4954d09605c23a57f6f3 /scipy/base/numeric.py | |
parent | 5daeb8eccba19179efd9469a0d916a18ab38dea0 (diff) | |
download | numpy-ca2d4dc36cd735c76f895d86e8424099603a9fed.tar.gz |
Added a can_cast Python function.
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index e0ccf41dc..8d7f0aad3 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -20,6 +20,7 @@ where = multiarray.where concatenate = multiarray.concatenate fastCopyAndTranspose = multiarray._fastCopyAndTranspose register_dtype = multiarray.register_dtype +can_cast = multiarray.can_cast def asarray(a, dtype=None): """asarray(a,dtype=None) returns a as a NumPy array. Unlike array(), |