WeibullDataSet.AddFailureInterval: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) |
||
Line 11: | Line 11: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|Declare | {{APIComment|'Declare a new WeibullDataSet object. See [[WeibullDataSet Class|WeibullDataSet]].}} | ||
Dim WDS as New WeibullDataSet | |||
{{APIComment|Add | {{APIComment|'Add three interval censored data points.}} | ||
WDS.AddFailureInterval(1, 5, 1) | |||
WDS.AddFailureInterval(6, 10, 1) | |||
WDS.AddFailureInterval(11, 15, 1) |
Revision as of 18:24, 6 May 2014
Adds interval censored failures to the data set, using the specified start/end times and number of failures that occurred within the interval.
Syntax
- AddFailureInterval( StartValueAs Double, EndValueAs Double, NumberInGroupAs Integer)
Parameters
- StartValue: The starting value of the failure interval.
- EndValue: The ending value of the failure interval.
- NumberInGroup: The number of failures that occurred during the interval.
Usage Example
'Declare a new WeibullDataSet object. See WeibullDataSet. Dim WDS as New WeibullDataSet 'Add three interval censored data points. WDS.AddFailureInterval(1, 5, 1) WDS.AddFailureInterval(6, 10, 1) WDS.AddFailureInterval(11, 15, 1)