ALTADataSet.ClearDataSet: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 19: Line 19:
    
    
  {{APIComment|'Add failure times for Stress1 = 190.}}
  {{APIComment|'Add failure times for Stress1 = 190.}}
  {{APIPrefix|Dim}} Stress(0) {{APIPrefix|As}} Variant
   {{APIPrefix|Call}} ADS.AddFailure_2(100, 1, 190)
  Stress(0) = 190
   {{APIPrefix|Call}} ADS.AddFailure_2(120, 1, 190)
 
   {{APIPrefix|Call}} ADS.AddFailure_2(130, 1, 190)
   {{APIPrefix|Call}} ADS.AddFailure(100, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(120, 1, Stress)
   {{APIPrefix|Call}} ADS.AddFailure(130, 1, Stress)
   
   
  {{APIComment|'Clear the defined stress and failure times from the data set.}}
  {{APIComment|'Clear the defined stress and failure times from the data set.}}

Latest revision as of 23:34, 5 May 2016

APIWiki.png


Member of: SynthesisAPI.ALTADataSet


Clears all data in the data set and removes the fitted model, if any.

Syntax

.ClearDataSet()


Example

VBA

 'Declare a new ALTADataSet object.  
  Dim ADS As New ALTADataSet
 
 'Define a stress type. 
  Call ADS.AddStressDefinition("Stress1",,10)
  
 'Add failure times for Stress1 = 190. 
  Call ADS.AddFailure_2(100, 1, 190)
  Call ADS.AddFailure_2(120, 1, 190)
  Call ADS.AddFailure_2(130, 1, 190)

 'Clear the defined stress and failure times from the data set. 
  Call ADS.ClearDataSet()


VB.NET
 
 'Declare a new ALTADataSet object.  
  Dim ADS As New ALTADataSet
 
 'Define a stress type. 
  ADS.AddStressDefinition("Stress1",,10)
 
 'Add failure times for Stress1 = 190. 
  ADS.AddFailure(100, 1, 190)
  ADS.AddFailure(120, 1, 190)
  ADS.AddFailure(130, 1, 190)
 
 'Clear the defined stress and failure times from the data set. 
  ADS.ClearDataSet()