diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-09-14 01:49:10 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-09-14 01:49:10 +0000 |
commit | 4e76e00cc5afceaf70fe8d655cf59d4a9fb85a0a (patch) | |
tree | 39a078cf6b53847505be2cb55dad65fcfc1056e4 /numpy/oldnumeric/functions.py | |
parent | 6359dccac9d940dc3291de360b4cb377183e1b9d (diff) | |
download | numpy-4e76e00cc5afceaf70fe8d655cf59d4a9fb85a0a.tar.gz |
Add histogramnd and fix histogram2d
Diffstat (limited to 'numpy/oldnumeric/functions.py')
-rw-r--r-- | numpy/oldnumeric/functions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/oldnumeric/functions.py b/numpy/oldnumeric/functions.py index f03f2fb21..475802c88 100644 --- a/numpy/oldnumeric/functions.py +++ b/numpy/oldnumeric/functions.py @@ -119,3 +119,4 @@ def cross_product(a, b, axis1=-1, axis2=-1): def average(a, axis=0, weights=None, returned=False): return N.average(a, axis, weights, returned) + |