Click or drag to resize

TransitionKernelLnT Delegate

A function which evaluates the log of a transition kernel probability.

Namespace: Altaxo.Calc.Statistics.Mcmc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public delegate double TransitionKernelLn<in T>(
	T to,
	T from
)

Parameters

to  T
The new state in the transition.
from  T
The previous state in the transition.

Type Parameters

T
The type for the space over which this transition kernel is defined.

Return Value

Double
The log probability of the transition.
See Also