public RareEventProbabilityEstimationResults Estimate(
RareEventProbabilityEstimationContext context,
double rarity,
int sampleSize,
int estimationSampleSize
)
Public Function Estimate (
context As RareEventProbabilityEstimationContext,
rarity As Double,
sampleSize As Integer,
estimationSampleSize As Integer
) As RareEventProbabilityEstimationResults
public:
RareEventProbabilityEstimationResults^ Estimate(
RareEventProbabilityEstimationContext^ context,
double rarity,
int sampleSize,
int estimationSampleSize
)
member Estimate :
context : RareEventProbabilityEstimationContext *
rarity : float *
sampleSize : int *
estimationSampleSize : int -> RareEventProbabilityEstimationResults
For a thorough description of the method and an example of how to use it, see the remarks about the RareEventProbabilityEstimationContext class.
ArgumentNullException | context is null. |
ArgumentOutOfRangeException | sampleSize is not positive. -or- rarity is not positive. -or- rarity is not less than 1. -or- estimationSampleSize is not positive. |