WeibullDataSet.AddSuspension: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
| Albert Szeto (talk | contribs) m moved AddSuspension to WeibullDataSet.AddSuspension | Kate Racaza (talk | contribs) No edit summary | ||
| (22 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| {{Template: | {{Template:API}}{{Template:APIBreadcrumb|.[[WeibullDataSet Class|WeibullDataSet]]}} | ||
| {{ | |||
| {{APIComment| | <onlyinclude>Adds suspensions to the data set.</onlyinclude> | ||
| == Syntax  == | |||
|  '''.AddSuspension'''(''Value'', ''NumberInGroup'') | |||
| ===Parameters=== | |||
| ''Value'' | |||
| :Required. Double. The suspension time.  | |||
| ''NumberInGroup'' | |||
| :Required. Integer. The number of suspended units at the time of suspension. | |||
| == Example == | |||
|  '''VBA''' | |||
|  {{APIComment|'Declare a new WeibullDataSet object.}}  | |||
|    {{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet | |||
|  {{APIComment|'Add suspensions at times 1, 2 and 3 to the data set.}} | |||
|    {{APIPrefix|Call}} WDS.AddSuspension(1, 1) | |||
|    {{APIPrefix|Call}} WDS.AddSuspension(2, 1) | |||
|    {{APIPrefix|Call}} WDS.AddSuspension(3, 1) | |||
|  '''VB.NET''' | |||
|  {{APIComment|'Declare a new WeibullDataSet object.}}  | |||
|    {{APIPrefix|Dim}} WDS {{APIPrefix|As New}} WeibullDataSet | |||
|  {{APIComment|'Add suspensions at times 1, 2 and 3 to the data set.}} | |||
|    WDS.AddSuspension(1, 1) | |||
|    WDS.AddSuspension(2, 1) | |||
|    WDS.AddSuspension(3, 1) | |||
Latest revision as of 22:17, 30 March 2016
|  | 
Member of:  SynthesisAPI.WeibullDataSet   
Adds suspensions to the data set.
Syntax
.AddSuspension(Value, NumberInGroup)
Parameters
Value
- Required. Double. The suspension time.
NumberInGroup
- Required. Integer. The number of suspended units at the time of suspension.
Example
VBA 'Declare a new WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add suspensions at times 1, 2 and 3 to the data set. Call WDS.AddSuspension(1, 1) Call WDS.AddSuspension(2, 1) Call WDS.AddSuspension(3, 1)
VB.NET 'Declare a new WeibullDataSet object. Dim WDS As New WeibullDataSet 'Add suspensions at times 1, 2 and 3 to the data set. WDS.AddSuspension(1, 1) WDS.AddSuspension(2, 1) WDS.AddSuspension(3, 1)