WeibullDataSet.AddFailure: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
== Syntax == | == Syntax == | ||
{{Template:WeibullDataSet.AddFailure}} | |||
Parameters | Parameters | ||
:''Value'': The failure point in time. | :''Value'': The failure point in time. |
Revision as of 18:47, 11 February 2014
Adds failure times to the data set, using the specified time and number of failures at that time.
Syntax
AddFailure( Value As Double , NumberInGroup As Integer ) Parameters
- Value: The failure point in time.
NumberInGroup The number of units that failed at the Value time.
Usage Example
Declare the WeibullDataSet. See New WeibullDataSet for additional details.
Dim WDS as New WeibullDataSet
Add values to the raw data.
WDS.AddFailure(1, 1) WDS.AddFailure(2, 1) WDS.AddFailure(3, 1)