dk.bayes.math

covfunc

package covfunc

Visibility
  1. Public
  2. All

Type Members

  1. trait CovFunc extends AnyRef

    Covariance function that measures similarity between two points in some input space.

  2. case class CovMatern52(sf: Double, ell: Double) extends CovFunc with Product with Serializable

    Matern covariance with v=5/2

    Matern covariance with v=5/2

    Implementation based 'http://www.gaussianprocess.org/gpml/code/matlab/doc/index.html'

    sf

    - log of signal standard deviation

    ell

    - log of length scale standard deviation

  3. case class CovSEARDIso(sf: Double, ell: Array[Double]) extends CovFunc with Product with Serializable

    Implementation based 'http://www.gaussianprocess.org/gpml/code/matlab/doc/index.html'

    Implementation based 'http://www.gaussianprocess.org/gpml/code/matlab/doc/index.html'

    Squared Exponential covariance function with isotropic distance measure. The covariance function is parameterized as:

    k(xp,xq) = sf2 * exp(-(xp - xq)'*inv(P)*(xp - x^q)/2)

    where the P matrix is ell2 times the unit matrix and sf2 is the signal variance.

    Copyright (c) by Carl Edward Rasmussen and Hannes Nickisch, 2010-09-10.

    sf

    - log of signal standard deviation

    ell

    - vector of log of length scale standard deviation

  4. case class CovSEiso(sf: Double, ell: Double) extends CovFunc with Product with Serializable

    Implementation based 'http://www.gaussianprocess.org/gpml/code/matlab/doc/index.html'

    Implementation based 'http://www.gaussianprocess.org/gpml/code/matlab/doc/index.html'

    Squared Exponential covariance function with isotropic distance measure. The covariance function is parameterized as:

    k(xp,xq) = sf2 * exp(-(xp - xq)'*inv(P)*(xp - x^q)/2)

    where the P matrix is ell2 times the unit matrix and sf2 is the signal variance.

    Copyright (c) by Carl Edward Rasmussen and Hannes Nickisch, 2010-09-10.

    sf

    - log of signal standard deviation

    ell

    - log of length scale standard deviation

Ungrouped