diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-10-02 03:51:44 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-10-02 03:51:44 +0000 |
commit | fb0ceff29f606d51c396521f8bee36d414e1cca4 (patch) | |
tree | faaa6aef79ea6ddeb4ad6ee9ee8b96ee20223c67 /scipy/base/numeric.py | |
parent | 0e1c0c01b93cfd521dbce975b1cd28517d2f151f (diff) | |
download | numpy-fb0ceff29f606d51c396521f8bee36d414e1cca4.tar.gz |
Fixes by Eric Firing..
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 b32aea512..a80940bca 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -98,6 +98,7 @@ def convolve(a,v,mode='full'): return correlate(a,asarray(v)[::-1],mode) ndarray = multiarray.ndarray +ndbigarray = multiarray.ndbigarray ufunc = type(sin) inner = multiarray.inner |