R/gp.kernel.R

# Copyright (C) 2013 Philipp Benner
#
# 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
# 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

call.kernel <- function(name, x, y, ...)
{
  storage.mode(x)   <- "double"
  if (!is.null(y)) {
    storage.mode(y)   <- "double"
  }

  if (!is.matrix(x)) {
    x <- as.matrix(x)
  }
  if (!is.null(y) && !is.matrix(y)) {
    y <- as.matrix(y)
  }

  if (is.null(y)) {
    .Call(name, x, x, ..., PACKAGE="gp.regression")
  }
  else {
    .Call(name, x, y, ..., PACKAGE="gp.regression")
  }
}

#' Create a linear kernel
#' 
#' @param var_0 base variance
#' @param var noise variance
#' @param c offset
#' @export

kernel.linear <- function(var_0, var, c = 0.0)
{
    storage.mode(var_0) <- "double"
    storage.mode(var)   <- "double"
    storage.mode(c)     <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("linear_gradient", x, y, var_0, var, c, i)
        }
        else {
            call.kernel("linear_kernel", x, y, var_0, var, c)
        }
    }
    return (f)
}

#' Create a squared exponential kernel
#' 
#' @param l length scale
#' @param var noise variance
#' @export

kernel.squared.exponential <- function(l, var)
{
    storage.mode(l)   <- "double"
    storage.mode(var) <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("squared_exponential_gradient", x, y, l, var, i)
        }
        else {
            call.kernel("squared_exponential_kernel", x, y, l, var)
        }
    }
    return (f)
}

#' Create a gamma exponential kernel
#' 
#' @param l length scale
#' @param var noise variance
#' @param gamma exponent
#' @export

kernel.gamma.exponential <- function(l, var, gamma)
{
    storage.mode(l)     <- "double"
    storage.mode(var)   <- "double"
    storage.mode(gamma) <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("gamma_exponential_gradient", x, y, l, var, gamma, i)
        }
        else {
            call.kernel("gamma_exponential_kernel", x, y, l, var, gamma)
        }
    }
    return (f)
}

#' Create a periodic kernel
#' 
#' @param l length scale
#' @param var noise variance
#' @param p periodicity
#' @export

kernel.periodic <- function(l, var, p)
{
    storage.mode(l)   <- "double"
    storage.mode(var) <- "double"
    storage.mode(p)   <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("periodic_gradient", x, y, l, var, p, i)
        }
        else {
            call.kernel("periodic_kernel", x, y, l, var, p)
        }
    }
    return (f)
}

#' Create a locally periodic kernel
#' 
#' @param l length scale
#' @param var noise variance
#' @param p periodicity
#' @export

kernel.locally.periodic <- function(l, var, p)
{
    storage.mode(l)   <- "double"
    storage.mode(var) <- "double"
    storage.mode(p)   <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("locally_periodic_gradient", x, y, l, var, p, i)
        }
        else {
            call.kernel("locally_periodic_kernel", x, y, l, var, p)
        }
    }
    return (f)
}

#' Create an Ornstein-Uhlenbeck kernel
#' 
#' @param l length scale
#' @export

kernel.ornstein.uhlenbeck <- function(l, var)
{
    storage.mode(l)   <- "double"
    storage.mode(var) <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("ornstein_uhlenbeck_gradient", x, y, l, var, i)
        }
        else {
            call.kernel("ornstein_uhlenbeck_kernel", x, y, l, var)
        }
    }
    return (f)
}

#' Create a Matern kernel
#' 
#' @param l length scale
#' @param var noise variance
#' @export

kernel.matern <- function(l, var, nu)
{
    storage.mode(l)   <- "double"
    storage.mode(var) <- "double"
    storage.mode(nu)  <- "double"
    f <- function(x, y=NULL, gradient=FALSE, i = 0) {
        if (gradient) {
            storage.mode(i) <- "integer"
            call.kernel("matern_gradient", x, y, l, var, nu, i)
        }
        else {
            call.kernel("matern_kernel", x, y, l, var, nu)
        }
    }
    return (f)
}

#' Create a combined kernel
#' 
#' @param ... list of kernel functions
#' @param operator function used to combine the kernel functions
#' @export

kernel.combined <- function(..., operator = "+")
{
    l <- list(...)
    stopifnot(length(l) >= 1)

    f <- function(...) {
        Reduce(operator, lapply(l, function(f) f(...)))
    }
    return (f)
}
pbenner/gp.regression documentation built on May 24, 2019, 10:35 p.m.