WeibullDataSet.AddFailureInterval: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) m (Protected "WeibullDataSet.AddFailureInterval" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]) |
John Leavitt (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}} | {{Template:APIClass|WeibullDataSet Class|WeibullDataSet}} | ||
{{Template:WeibullDataSet.AddFailureInterval.Cmt}} | |||
== Method Syntax == | == Method Syntax == | ||
{{ | {{Template:WeibullDataSet.AddFailureInterval}} | ||
== Parameters == | == Parameters == |
Revision as of 17:10, 29 January 2014
Adds interval censored failures to the data set, using the specified start/end times and number of failures that occurred within the interval.
Method Syntax
- AddFailureInterval( ByVal StartValue As Double , ByVal EndValue As Double , ByVal NumberInGroup As Integer )
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)