WeibullDataSet.Calculate

From ReliaWiki
Jump to navigation Jump to search


Fits the distribution to the current data set using the settings specified in the AnalysisSettings property.

This is equivalent to clicking the Calculate icon on the standard folio control panel and publishing the results.

Syntax

  • Calculate()

Usage Example

 'Declare a new WeibullDataSet object. See WeibullDataSet. 
 Dim WDS As New WeibullDataSet("AddFailure_Example")

 'Add failure times to the data set. 
 WDS.AddFailure(100, 1)
 WDS.AddFailure(120, 1)
 WDS.AddFailure(130, 1)  
 
 'Fit the data to a life distribution, using all default analysis settings. 
 WDS.Calculate()
 
 'Retrieve the fitted model. See cModel. 
 Dim model As cModel
 model = WDS.FittedModel