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}} | ||
Inserts a failure point | Inserts a failure point | ||
== Method Syntax == | == Method Syntax == | ||
Line 13: | Line 13: | ||
{{APIPrefix|As Integer}} | {{APIPrefix|As Integer}} | ||
{{APIName|)}} | {{APIName|)}} | ||
{{APIComment|Inserts a failure point to the WeibullDataSet.}} | |||
== Parameters == | == Parameters == |
Revision as of 15:38, 24 September 2013
Inserts a failure point
Method Syntax
AddFailure( ByVal Value As Double , ByVal NumberInGroup As Integer ) Inserts a failure point to the WeibullDataSet.
Parameters
Value The failure point in time.
NumberInGroup The number of units that failed at the Value time.
Adds a failure data point to the collection of data points in the data set.
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)