dk.bayes.math.covfunc

CovSEARDIso

Related Doc: package covfunc

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'

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

Linear Supertypes
Serializable, Serializable, Product, Equals, CovFunc, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CovSEARDIso
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. CovFunc
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CovSEARDIso(sf: Double, ell: Array[Double])

    sf

    - log of signal standard deviation

    ell

    - vector of log of length scale standard deviation

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def cov(x1: Array[Double], x2: Array[Double]): Double

    Returns similarity between two vectors.

    Returns similarity between two vectors.

    x1

    [Dx1] vector

    x2

    [Dx1] vector

    Definition Classes
    CovSEARDIsoCovFunc
  7. def cov(x1: DenseVector[Double], x2: DenseVector[Double]): Double

  8. def cov(x1: Double, x2: Double): Double

    Definition Classes
    CovFunc
  9. def cov(x: Array[Double]): DenseMatrix[Double]

    Definition Classes
    CovFunc
  10. def cov(x: DenseMatrix[Double]): DenseMatrix[Double]

    x

    [N x D] vector, N - number of random variables, D - dimensionality of random variable

    returns

    [N x N] covariance matrix

    Definition Classes
    CovFunc
  11. def covNM(x: DenseMatrix[Double], z: DenseMatrix[Double]): DenseMatrix[Double]

    x

    [N x D] vector, N - number of random variables, D - dimensionality of random variable

    z

    [M x D] vector, N - number of random variables, D - dimensionality of random variable

    returns

    [N x M] covariance matrix

    Definition Classes
    CovFunc
  12. def covWithD(x: DenseMatrix[Double], computeDfDSf: Boolean = true, computeDfDell: Boolean = true): (DenseMatrix[Double], Option[DenseMatrix[Double]], Option[Array[DenseMatrix[Double]]])

    x

    [N x D] vector, N - number of random variables, D - dimensionality of random variable

    returns

    ([N x N] covariance matrix, [N x N] partial derivatives matrix with respect to sf parameter, array of [NxN] partial derivative matrix with respect to ell parameters)

  13. val ell: Array[Double]

    - vector of log of length scale standard deviation

  14. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. val sf: Double

    - log of signal standard deviation

  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from CovFunc

Inherited from AnyRef

Inherited from Any

Ungrouped