WeibullDataSet.AddFailureInterval: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) |
Kate Racaza (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template: | {{Template:API}}{{Template:APIBreadcrumb|.[[WeibullDataSet Class|WeibullDataSet]]}} | ||
{{Template:WeibullDataSet | |||
<onlyinclude>Adds interval censored failures to the data set.</onlyinclude> | |||
{{APIComment|'Declare a new WeibullDataSet object | == Syntax == | ||
'''.AddFailureInterval'''(''StartValue'', ''EndValue'', ''NumberInGroup'') | |||
===Parameters=== | |||
''StartValue'' | |||
:Required. Double. The starting value of the failure interval. | |||
''EndValue'' | |||
:Required. Double. The ending value of the failure interval. | |||
''NumberInGroup'' | |||
:Required. Integer. The number of failures that occurred during the interval. | |||
== Example == | |||
'''VBA|VB.NET''' | |||
{{APIComment|'Declare a new WeibullDataSet object.}} | |||
{{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet | |||
{{APIComment|'Add three interval censored data points.}} | {{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 21:33, 30 March 2016
Member of: SynthesisAPI.WeibullDataSet
Adds interval censored failures to the data set.
Syntax
.AddFailureInterval(StartValue, EndValue, NumberInGroup)
Parameters
StartValue
- Required. Double. The starting value of the failure interval.
EndValue
- Required. Double. The ending value of the failure interval.
NumberInGroup
- Required. Integer. The number of failures that occurred during the interval.
Example
VBA|VB.NET 'Declare a new WeibullDataSet object. 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)