DiracKernel

The Dirac kernel with conditional mean prameter $\mu$ is denotd by

\[k(y\mid x) = \delta(y - \mu(x)).\]

Types

Type aliases

const AffineDiracKernel{T} = DiracKernel{T,<:AbstractAffineMap}

Methods

Statistics.meanMethod
mean(K::AbstractDiracKernel)

Computes the conditonal mean function of the Dirac kernel K. That is, the output is callable.

source
Base.randMethod
rand([rng::AbstractRNG], K::AbstractDiracKernel, x::AbstractVector)

Computes a random vector conditionally on x with respect the the Dirac kernel K using the random number generator RNG. Equivalent to mean(K)(x).

source