WeibullDataSet.AddFailure: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 16: | Line 16: | ||
== Example == | == Example == | ||
'''VBA|VB.NET''' | '''VBA''' | ||
{{APIComment|'Declare a new WeibullDataSet object.}} | |||
{{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet | |||
{{APIComment|'Add the failure times 10, 20 and 30 to the data set.}} | |||
{{APIPrefix|Call}} WDS.AddFailure(10, 1) | |||
{{APIPrefix|Call}} WDS.AddFailure(20, 1) | |||
{{APIPrefix|Call}} WDS.AddFailure(30, 1) | |||
'''VB.NET''' | |||
{{APIComment|'Declare a new WeibullDataSet object.}} | {{APIComment|'Declare a new WeibullDataSet object.}} |
Revision as of 22:14, 30 March 2016
Member of: SynthesisAPI.WeibullDataSet
Adds a failure time to the data set.
Syntax
.AddFailure(Value, NumberInGroup)
Parameters
Value
- Required. Double. The exact time of failure.
NumberInGroup
- Required. Integer. The number of failed units at the time of failure.
Example
VBA 'Declare a new WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add the failure times 10, 20 and 30 to the data set. Call WDS.AddFailure(10, 1) Call WDS.AddFailure(20, 1) Call WDS.AddFailure(30, 1)
VB.NET 'Declare a new WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add the failure times 10, 20 and 30 to the data set. WDS.AddFailure(10, 1) WDS.AddFailure(20, 1) WDS.AddFailure(30, 1)