Changeset 641 for inundation/ga
- Timestamp:
- Nov 30, 2004, 3:20:37 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
inundation/ga/storm_surge/pyvolution/least_squares.py
r621 r641 29 29 from general_mesh import General_mesh 30 30 from Numeric import zeros, array, Float, Int, dot, transpose 31 from LinearAlgebra import solve_linear_equations31 ##from LinearAlgebra import solve_linear_equations 32 32 from sparse import Sparse, Sparse_CSR 33 33 from cg_solve import conjugate_gradient, VectorShapeError … … 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 #FIXME (Ole): We should use CSR here since mat-mat mult is now OK. 230 231 self.A = Sparse(n,m) 231 232 self.AtA = Sparse(m,m)
Note: See TracChangeset
for help on using the changeset viewer.