Previous Next


TruncMin Property (RDKDistribution Object)

Description

Sets or retrieves the truncation minimum of the distribution. No samples can be drawn below this limit.

Syntax

object.TruncMin

Arguments

None.

Return Value

(Double) – the truncation limit

Example

'Make a Normal(0,1) distribution with an lower truncation limit of –3.
Dim dist as New Distribution
With dist
    .DistType = RDKDistTypeNormal
    .Arg(1) = 0
    .Arg(2) = 1
    .TruncMin = -3
End With