Description
Sets the distribution object to the "default" set of parameters for the distribution type specified. This includes arguments, shift factor, truncation limits, and value tables.
Syntax
object.Default(distType as RDKDistributionType)
Arguments
distType (Required RDKDistributionType) – the type of distribution (e.g. Normal, Lognormal, etc).
Return Value
None.
Example
'Set dist to the default Normal distribution
Dim dist as New RDKDistribution
dist.Default(RDKDistTypeNormal)