WeibullDataSet.AddFailure: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) No edit summary |
John Leavitt (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}} | {{Template:APIClass|WeibullDataSet Class|WeibullDataSet}} | ||
This function can be used with Weibull++ to insert a failure point. | |||
== Method Syntax == | == Method Syntax == | ||
Line 12: | Line 12: | ||
'''NumberInGroup''' | '''NumberInGroup''' | ||
The number of units that failed at the '''Value''' time. | The number of units that failed at the '''Value''' time. | ||
== Usage Example == | == Usage Example == |
Revision as of 16:46, 29 January 2014
This function can be used with Weibull++ to insert a failure point.
Method 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)