diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-22 03:07:47 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-22 03:07:47 +0000 |
commit | 5bf137e9c5b75119cfc1026b88adf7bc1c2ded49 (patch) | |
tree | aece6e9fe97c1a7620f42ca4cb90169948488f60 /scipy/base/numeric.py | |
parent | e51273ec8c2d482d7f09a42f4c178664d907a593 (diff) | |
download | numpy-5bf137e9c5b75119cfc1026b88adf7bc1c2ded49.tar.gz |
Fixed fortran ravelling issues.
Diffstat (limited to 'scipy/base/numeric.py')
-rw-r--r-- | scipy/base/numeric.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scipy/base/numeric.py b/scipy/base/numeric.py index ef7c38627..832a0bd15 100644 --- a/scipy/base/numeric.py +++ b/scipy/base/numeric.py @@ -18,6 +18,7 @@ fromfile = multiarray.fromfile frombuffer = multiarray.frombuffer where = multiarray.where concatenate = multiarray.concatenate +fastCopyAndTranspose = multiarray._fastCopyAndTranspose #def where(condition, x=None, y=None): # """where(condition,x,y) is shaped like condition and has elements of x and # y where condition is respectively true or false. |