WeibullDataSet.AddFailureInterval

From ReliaWiki
Revision as of 22:29, 3 December 2013 by John Leavitt (talk | contribs) (Protected "WeibullDataSet.AddFailureInterval" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading])
Jump to navigation Jump to search



Inserts a failure interval

Method Syntax

AddFailureInterval( ByVal Value As Double , ByVal EndValue As Double , ByVal NumberInGroup AsLong )
Inserts a failure interval to the WeibullDataSet.

Parameters

Value The starting value of this failure interval.

EndValue The ending value of this failure interval.

NumberInGroup The number of units that failed during this interval.

Adds a Failure interval data point to the collection of data points in the data set.

Usage Example

Declare the WeibullDataSet. See New WeibullDataSet for additional details.

       Dim WDS as New WeibullDataSet

Add values to the raw data.

       WDS.AddFailureInterval(1, 5, 1)
       WDS.AddFailureInterval(6, 10, 1)
       WDS.AddFailureInterval(11, 15, 1)