WeibullDataSet.Calculate: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) |
Chris Kahn (talk | contribs) |
||
Line 20: | Line 20: | ||
WDS.Calculate() | WDS.Calculate() | ||
{{APIComment|'Retrieve the fitted model. See [[cModel Class|cModel]].}} | {{APIComment|'Retrieve the fitted life distribution model. See [[cModel Class|cModel]].}} | ||
Dim model As cModel | Dim model As cModel | ||
model = WDS.FittedModel | model = WDS.FittedModel |
Revision as of 20:05, 6 May 2014
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 life distribution model. See cModel. Dim model As cModel model = WDS.FittedModel