R/Radial.basis.R

Defines functions Radial.basis

Documented in Radial.basis

# LatticeKrig  is a package for analysis of spatial data written for
# the R software environment .
# Copyright (C) 2024
# University Corporation for Atmospheric Research (UCAR)
# Contact: Douglas Nychka, nychka@ucar.edu,
# National Center for Atmospheric Research, PO Box 3000, Boulder, CO 80307-3000
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with the R software environment if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
# or see http://www.r-project.org/Licenses/GPL-2

Radial.basis <- function(x1, centers, basis.delta,
                     max.points = NULL, 
                  mean.neighbor = 50,
                  BasisFunction = "WendlandFunction", 
                  distance.type = "Euclidean",
                        verbose = FALSE)
{    
    d <- ncol(x1)
    n1 <- nrow(x1)
    if (is.null(max.points)) {
        Nmax <- n1 * mean.neighbor
    }
    else {
        Nmax <- max.points
    }
    if( verbose){
        cat('Radial.basis Nmax',         Nmax       , fill=TRUE)
    	cat('Radial.basis basis.delta' , basis.delta, fill=TRUE)
    }
    # evalute RBF basis functions at the x1 locations with
    # nodes given by centers. Returned is a sparse matrix in
    # a simpler format than spam  (row/column indices and value)
    # returned values ind and rd below in 'out' object.
    t1  <- system.time(  
    out <- LKrigDistance( x1, centers,
                             delta = basis.delta,
                        max.points = max.points,
                     mean.neighbor = mean.neighbor,
                     distance.type = distance.type,
                        components = FALSE)
    )      
    if( verbose){
    	cat("time for LKDistance")
    	print( t1)
    }          
    # evaluate distance  with RBF ---  usually Wendland2.2 
    t2  <- system.time(
    out$ra <- do.call(BasisFunction, list(d = out$ra/basis.delta) )
    )
    if( verbose){
        cat("time for basis")
        print( t2)
    } 
    
   
    
    t3A<- system.time(
        out <- spind2spam(out)
    )
    if( verbose){
    cat("time for spam conversion")
    print( t3A)
    }
    #
    # following code takes much longer
    # t3<- system.time(
    #   out <- spam(out[c("ind", "ra")],
    #               nrow=out$da[1],
    #               ncol= out$da[2] )
    # )
    # if( verbose){
    #     cat("time for spam conversion")
    #     
    #     print( t3)
    # }
    return(out)
}

Try the LatticeKrig package in your browser

Any scripts or data that you put into this service are public.

LatticeKrig documentation built on Oct. 10, 2024, 1:07 a.m.