WeibullDataSet.AddSuspensionInterval: 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 suspension interval   | Inserts a suspension interval  | ||
== Method Syntax ==  | == Method Syntax ==  | ||
| Line 16: | Line 16: | ||
{{APIName|NumberInGroup}}  | {{APIName|NumberInGroup}}  | ||
{{APIPrefix|AsLong}}  | {{APIPrefix|AsLong}}  | ||
{{APIName|)}}  | {{APIName|)}}<br>  | ||
{{APIComment|Inserts a suspension interval to the WeibullDataSet.}}  | |||
== Parameters ==  | == Parameters ==  | ||
Revision as of 15:40, 24 September 2013
 
Inserts a suspension interval
Method Syntax
 AddSuspensionInterval( 
ByVal
 Value 
As Double
 , 
ByVal
 EndValue 
As Double
 , 
ByVal
 NumberInGroup 
AsLong
 ) 
 Inserts a suspension interval to the WeibullDataSet. 
Parameters
Value The starting value of this suspension interval.
EndValue The ending value of this suspension interval.
NumberInGroup The number of units that were suspended during this interval.
Adds a Suspension interval 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.AddSuspensionInterval(1, 5, 1)
       WDS.AddSuspensionInterval(6, 10, 1)
       WDS.AddSuspensionInterval(11, 15, 1)
