WeibullDataSet.AddSuspension: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| Chris Kahn (talk | contribs) No edit summary | Chris Kahn (talk | contribs) No edit summary | ||
| Line 7: | Line 7: | ||
| Parameters | Parameters | ||
| :''Value'': The suspension time. | :''Value'': The suspension time. | ||
| ''NumberInGroup'': The number of units that were suspended at the ''Value'' time. | :''NumberInGroup'': The number of units that were suspended at the ''Value'' time. | ||
| == Usage Example == | == Usage Example == | ||
Revision as of 18:49, 11 February 2014
 
Adds suspensions to the data set, using the specified time and number of suspensions at that time.
Syntax
AddSuspension( Value As Double , NumberInGroup As Integer )
Parameters
- Value: The suspension time.
- NumberInGroup: The number of units that were suspended 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.AddSuspension(1, 1)
       WDS.AddSuspension(2, 1)
       WDS.AddSuspension(3, 1)
