Changeset 621 for inundation/ga


Ignore:
Timestamp:
Nov 24, 2004, 1:57:41 PM (20 years ago)
Author:
ole
Message:

Comments

File:
1 edited

Legend:

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

    r611 r621  
    226226        m = self.mesh.coordinates.shape[0] #Nbr of basis functions (1/vertex)
    227227        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.
    229230        self.A = Sparse(n,m)
    230231        self.AtA = Sparse(m,m)
     
    597598        Inputs:
    598599          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
    600602        """
    601603
Note: See TracChangeset for help on using the changeset viewer.