diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-09-14 02:33:55 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-09-14 02:33:55 +0000 |
commit | d6ce2d7dc3a62b45272779d771c86338cf4f2c56 (patch) | |
tree | 61ebc82a5816257d1cd90b2f35ce694e5e17be74 /numpy/lib/function_base.py | |
parent | 4e76e00cc5afceaf70fe8d655cf59d4a9fb85a0a (diff) | |
download | numpy-d6ce2d7dc3a62b45272779d771c86338cf4f2c56.tar.gz |
Fix up r_ so you can specify the minimum number of dimensions to force arrays to and allow alteration of the concatenation axis and whether or not to transpose 1d arrays
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 4701cb03e..435feff80 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -103,7 +103,7 @@ def histogram(a, bins=10, range=None, normed=False): else: return n, bins -def histogramnd(sample, bins=10, range=None, normed=False): +def histogramnd(sample, bins=10, range=None, normed=False): """histogramnd(sample, bins = 10, range = None, normed = False) -> H, edges Return the N-dimensional histogram computed from sample. |