WeibullDataSet.AddSuspension: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 16: Line 16:


== Example ==
== Example ==
  '''VBA|VB.NET'''
  '''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.}}  
  {{APIComment|'Declare a new WeibullDataSet object.}}  

Latest revision as of 22:17, 30 March 2016

APIWiki.png


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)