Changeset 621 for inundation/ga
- Timestamp:
- Nov 24, 2004, 1:57:41 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/least_squares.py
r611 r621 226 226 m = self.mesh.coordinates.shape[0] #Nbr of basis functions (1/vertex) 227 227 n = point_coordinates.shape[0] #Nbr of data points 228 228 229 #FIXME (Ole): We should use CSR here since matrix-matrix mult is OK. 229 230 self.A = Sparse(n,m) 230 231 self.AtA = Sparse(m,m) … … 597 598 Inputs: 598 599 f: Vector or array of data at the mesh vertices. 599 If f is an array, interpolation will be done for each column 600 If f is an array, interpolation will be done for each column as 601 per underlying matrix-matrix multiplication 600 602 """ 601 603
Note: See TracChangeset
for help on using the changeset viewer.