CrossEntropyContextUpdateParameter Method

Updates the sampling parameter attending the generation of the sample in the next iteration of a CrossEntropyProgram executing in this context.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
protected abstract DoubleMatrix UpdateParameter(
	LinkedList<DoubleMatrix> parameters,
	DoubleMatrix eliteSample
)

Parameters

parameters  LinkedListDoubleMatrix
The sampling parameters applied by the program in previous iterations.
eliteSample  DoubleMatrix
The elite sample drawn in the current iteration.

Return Value

DoubleMatrix
The sampling parameter attending the generation of the sample in the next iteration.

Remarks

Method UpdateParameter is expected to update the parameter of the random mechanism attending the generation of the sample in the next iteration of the program.

See Also