diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-05 05:49:08 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-05 05:49:08 +0000 |
commit | c76a2c4097fda804b05a713370ce077215e2ee7a (patch) | |
tree | 2c26998cf02674723a86270c6de8d760f955322c /numpy/lib/function_base.py | |
parent | c620acddd34a07edd6f33baad0adfad6e8cf1bd5 (diff) | |
download | numpy-c76a2c4097fda804b05a713370ce077215e2ee7a.tar.gz |
Fix up __array_interface__ getting and depth discovery for scalars.
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 4478a332f..3a8b5ffd7 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1023,8 +1023,7 @@ def i0(x): def kaiser(M,beta): """kaiser(M, beta) returns a Kaiser window of length M with shape parameter - beta. It depends on numpy.special (in full numpy) for the modified bessel - function i0. + beta. """ from numpy.dual import i0 n = arange(0,M) |