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/shape_base.py | |
parent | b560ed0a06160b012ea6023be0fc219717f761c4 (diff) | |
download | numpy-0746db19c3cc198c95b632bd1285978050f355d6.tar.gz |
problematic MIN removed.
Diffstat (limited to 'scipy/base/shape_base.py')
-rw-r--r-- | scipy/base/shape_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/shape_base.py b/scipy/base/shape_base.py index cb9d1a049..ef249d049 100644 --- a/scipy/base/shape_base.py +++ b/scipy/base/shape_base.py @@ -252,7 +252,7 @@ def column_stack(tup): >>> import scipy >>> a = array((1,2,3)) >>> b = array((2,3,4)) - >>> scipy.vstack((a,b)) + >>> scipy.column_stack((a,b)) array([[1, 2], [2, 3], [3, 4]]) |