CrossEntropyProgramSample Method

Draws a sample having the specified size from a distribution defined in the given context and characterized by the designated parameter.

Definition

Namespace: Novacta.Analytics.Advanced
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
protected DoubleMatrix Sample(
	CrossEntropyContext context,
	int sampleSize,
	DoubleMatrix parameter
)

Parameters

context  CrossEntropyContext
The context in which the method must be executed.
sampleSize  Int32
The sample size.
parameter  DoubleMatrix
The sampling parameter.

Return Value

DoubleMatrix
The matrix containing the sample data.

Remarks

This method executes the sampling step of a Cross-Entropy program.

Method Sample returns a DoubleMatrix whose rows represent the generated sample points, while its NumberOfColumns is the StateDimension of the points in the specified context. This is equivalent to require that a state of the system under study must be representable by a row vector.

Exceptions

ArgumentNullExceptioncontext is null.
-or-
parameter is null.
ArgumentOutOfRangeExceptionsampleSize is not positive.
ArgumentException The dimensions of parameter do not match those of the InitialParameter of context.

See Also