WeibullDataSet.Calculate: Difference between revisions
Jump to navigation
Jump to search
Chris Kahn (talk | contribs) No edit summary |
Chris Kahn (talk | contribs) |
||
Line 9: | Line 9: | ||
== Usage Example == | == Usage Example == | ||
{{APIComment|Declare | {{APIComment|'Declare a new WeibullDataSet object. See [[WeibullDataSet Class|WeibullDataSet]].}} | ||
Dim WDS As New WeibullDataSet("AddFailure_Example") | |||
{{APIComment|Add | {{APIComment|'Add failure times to the data set.}} | ||
WDS.AddFailure(100, 1) | |||
WDS.AddFailure(120, 1) | |||
WDS.AddFailure(130, 1) | |||
{{APIComment|Calculate the | {{APIComment|'Fit the data to a life distribution, using all default analysis settings.}} | ||
WDS.Calculate() | |||
{{APIComment|'Retrieve the fitted model. See [[cModel Class|cModel]].}} | |||
Dim model As cModel | |||
model = WDS.FittedModel |
Revision as of 20:04, 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 model. See cModel. Dim model As cModel model = WDS.FittedModel