Changeset 3749
- Timestamp:
- Oct 11, 2006, 2:22:32 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/utilities/numerical_tools.py
r3684 r3749 9 9 #Establish which Numeric package to use 10 10 #(this should move to somewhere central) 11 try: 12 from scipy import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate, Float, arange 13 except: 14 #print 'Could not find scipy - using Numeric' 15 from Numeric import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate, Float, arange 11 #try: 12 # from scipy import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate, Float, arange 13 #except: 14 # #print 'Could not find scipy - using Numeric' 15 # from Numeric import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate, Float, arange 16 from Numeric import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate, Float, arange 16 17 17 18 # Getting an infinite number to use when using Numeric
Note: See TracChangeset
for help on using the changeset viewer.