LocalProposalSamplerT Delegate | 
            A method which samples datapoints from a proposal distribution given an initial sample. The implementation
            of this sampler is stateless: no variables are saved between two calls to Sample. This proposal is different from
             in that it samples locally around an initial point. In other words, it
            makes a small local move rather than producing a global sample from the proposal.
            
Namespace: Altaxo.Calc.Statistics.McmcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic delegate T LocalProposalSampler<T>(
	T init
)
Parameters
- init  T
 - The initial sample.
 
Type Parameters
- T
 - The type of the datapoints.
 
Return Value
TA sample from the proposal distribution.
See Also