diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-20 08:19:08 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-20 08:19:08 +0000 |
commit | 0746db19c3cc198c95b632bd1285978050f355d6 (patch) | |
tree | 7bbc6d05df76ab4fa2959a1cb94e3f4c54a3e74d /scipy/base/function_base.py | |
parent | b560ed0a06160b012ea6023be0fc219717f761c4 (diff) | |
download | numpy-0746db19c3cc198c95b632bd1285978050f355d6.tar.gz |
problematic MIN removed.
Diffstat (limited to 'scipy/base/function_base.py')
-rw-r--r-- | scipy/base/function_base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scipy/base/function_base.py b/scipy/base/function_base.py index ebe975a55..86b0d3fff 100644 --- a/scipy/base/function_base.py +++ b/scipy/base/function_base.py @@ -404,7 +404,6 @@ def sort_complex(a): else: return b - def trim_zeros(filt,trim='fb'): """ Trim the leading and trailing zeros from a 1D array. @@ -435,7 +434,6 @@ def unique(inseq): for item in inseq: set[item] = None return asarray(set.keys()) - def extract(condition, arr): """Elements of ravel(condition) where ravel(condition) is true (1-d) |