Changeset 2633
- Timestamp:
- Mar 29, 2006, 4:35:16 PM (17 years ago)
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/domain.py
r2620 r2633 165 165 166 166 def set_time(self, time=0.0): 167 """Set the time"""167 """Set the model time (seconds)""" 168 168 169 169 self.time = time -
inundation/pyvolution/least_squares.py
r2585 r2633 986 986 The arrays must either have dimensions pxm or mx1. 987 987 The resulting function will be time dependent in 988 the former case while it will be constan with988 the former case while it will be constant with 989 989 respect to time in the latter case. 990 990 -
inundation/utilities/numerical_tools.py
r2573 r2633 10 10 from scipy import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate 11 11 except: 12 print 'Could not find scipy - using Numeric'12 #print 'Could not find scipy - using Numeric' 13 13 from Numeric import ArrayType, array, sum, innerproduct, ravel, sqrt, searchsorted, sort, concatenate 14 14 -
inundation/utilities/polygon.py
r2622 r2633 8 8 from scipy import Float, Int, zeros, ones, array, concatenate, reshape, dot 9 9 except: 10 print 'Could not find scipy - using Numeric'10 #print 'Could not find scipy - using Numeric' 11 11 from Numeric import Float, Int, zeros, ones, array, concatenate, reshape, dot 12 12
Note: See TracChangeset
for help on using the changeset viewer.