Ignore:
Timestamp:
Nov 30, 2004, 3:20:37 PM (20 years ago)
Author:
ole
Message:

Test of interpolation using different points from those used in the fit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • inundation/ga/storm_surge/pyvolution/least_squares.py

    r621 r641  
    2929from general_mesh import General_mesh
    3030from Numeric import zeros, array, Float, Int, dot, transpose
    31 from LinearAlgebra import solve_linear_equations
     31##from LinearAlgebra import solve_linear_equations
    3232from sparse import Sparse, Sparse_CSR
    3333from cg_solve import conjugate_gradient, VectorShapeError
     
    227227        n = point_coordinates.shape[0]     #Nbr of data points
    228228
    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.
    230231        self.A = Sparse(n,m)
    231232        self.AtA = Sparse(m,m)
Note: See TracChangeset for help on using the changeset viewer.