Changeset 1894 for inundation/pyvolution/least_squares.py
- Timestamp:
- Oct 11, 2005, 3:22:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/least_squares.py
r1891 r1894 966 966 msg = 'Time must be a monotonuosly ' 967 967 msg += 'increasing sequence %s' %time 968 assert alltrue(time[1:] - time[:-1] > 0 ), msg968 assert alltrue(time[1:] - time[:-1] >= 0 ), msg 969 969 970 970 … … 1073 1073 1074 1074 def __repr__(self): 1075 #return 'Interpolation function (spatio n-temporal)'1075 #return 'Interpolation function (spatio-temporal)' 1076 1076 return self.statistics() 1077 1077 … … 1211 1211 1212 1212 str = '------------------------------------------------\n' 1213 str += 'Interpolation_function (spatio n-temporal) statistics:\n'1213 str += 'Interpolation_function (spatio-temporal) statistics:\n' 1214 1214 str += ' Extent:\n' 1215 1215 str += ' x in [%f, %f], len(x) == %d\n'\
Note: See TracChangeset
for help on using the changeset viewer.