Changeset 1894
- Timestamp:
- Oct 11, 2005, 3:22:39 PM (19 years ago)
- Location:
- inundation/pyvolution
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/pyvolution/general_mesh.py
r1751 r1894 238 238 return take(self.triangles, indices) 239 239 240 #FIXME - merge these two 240 #FIXME - merge these two (get_vertices and get_triangles) 241 241 def get_triangles(self, obj = False): 242 242 """Get connetivity -
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.