Previous Next


StressMinPercentile Property (RDKInput Object)

Description

Sets or returns the minimum percentile for this input's stress analysis limits. Stress analysis allows you to quickly modify your model to sample certain distributions in particular percentile regions. This allows you to easily answer questions like, "What would happen, if my Revenue distribution always samples in the lowest 25th percentile?". This property has no effect unless the parent RDKInputs collection object's StressAnalysisEnabled property is TRUE. By default StressMinPercentile is 0.

Syntax

object.StressMinPercentile

Arguments

None.

Return Value

(Double) – the minimum percentile. Must be a number between 0 and 1. StressMaxPercentile must be larger than StressMinPercentile.

Example

'Stress myInput to be in the upper 10TH percentile.
RDKApp.Inputs.StressAnalysisEnabled = TRUE
With RDKApp.Inputs("myInput")
    .StressMinPercentile = .9
    .StressMaxPercentile = 1.0
End With