From d6ce2d7dc3a62b45272779d771c86338cf4f2c56 Mon Sep 17 00:00:00 2001 From: Travis Oliphant Date: Thu, 14 Sep 2006 02:33:55 +0000 Subject: 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 --- numpy/lib/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/function_base.py') 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. -- cgit v1.2.1