Changeset 2548 for inundation-numpy-branch/utilities/numerical_tools.py
- Timestamp:
- Mar 15, 2006, 12:14:12 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation-numpy-branch/utilities/numerical_tools.py
r2545 r2548 4 4 """ 5 5 6 7 #Establish which Numeric package to use 8 #(this should move to somewhere central) 9 try: 10 from numpy import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate 11 except: 12 print 'Could not find numpy - using Numeric' 13 from Numeric import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate 6 from numpy import ArrayType, array, sum, innerproduct, ravel, sqrt 7 from numpy import searchsorted, sort, concatenate 14 8 15 9
Note: See TracChangeset
for help on using the changeset viewer.