R/maths.R

Defines functions gauss nonstwm besselKx matern whittle wmscale struveL struveH .struve I0L0

Documented in gauss I0L0 matern nonstwm struveH struveL whittle

## Authors 
## Martin Schlather, schlather@math.uni-mannheim.de
##
##
## Copyright (C) 2015 -- 2021 Martin Schlather
##
## 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 3
## 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 this program; if not, write to the Free Software
## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.  


I0L0 <- function(x) {
  storage.mode(x) <- "double"
#  res <- double(length(x))
  .Call(C_I0ML0, x)
}


.struve <- function(x, nu, sign, expon.scaled) {
  storage.mode(x) <- "double"
  storage.mode(nu) <- "double"
  storage.mode(expon.scaled) <- "logical"
  storage.mode(sign) <- "double"
#  res <- double(max(length(x), length(nu)))
 .Call(C_struve, x, nu, sign, expon.scaled)
}
struveH <- function(x, nu)  .struve(x, nu, -1, FALSE)
struveL <- function(x, nu, expon.scaled=FALSE)  .struve(x, nu, 1, expon.scaled)

wmscale <- function(scaling) {
  switch(scaling,
         whittle = 0.0,
         matern = sqrt(2),
         handcockwallis = 2.0
         )
}

whittle <- function(x, nu, derivative=0,
                   scaling=c("whittle", "matern", "handcockwallis")) {
  .Call(C_WMr, as.double(x), as.double(nu), as.integer(derivative),
        if (is.character(scaling)) wmscale(match.arg(scaling))
        else as.double(scaling))
}

matern <- function(x, nu, derivative=0,
                   scaling=c("matern", "whittle", "handcockwallis")) {
  whittle(x, nu, derivative,
          if (is.character(scaling)) wmscale(match.arg(scaling)) else scaling)
}

besselKx <- function(x, nu) .Call(C_besselk_simd, x, nu)
 
nonstwm <- function(x, y, nu, log=FALSE,
                    scaling=c("whittle", "matern", "handcockwallis")) {
  if (is.function(nu)) {
    nu1 <- nu(x)
    nu2 <- nu(y)
  } else nu1 <- nu2 <- nu
  L <- .Call(C_logWMr, sqrt(sum((x - y)^2)), as.double(nu1), as.double(nu2),
             if (is.character(scaling)) wmscale(match.arg(scaling))
             else as.double(scaling))
  if (log) L else exp(L)
}
  

gauss <- function(x, derivative=0) {
  .Call(C_gaussr, as.double(x), as.integer(derivative))
}

Try the RandomFieldsUtils package in your browser

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

RandomFieldsUtils documentation built on April 19, 2022, 5:09 p.m.