WeibullDataSet.Calculate: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}
{{Template:APIClass|WeibullDataSet Class|WeibullDataSet}}


{{Template:WeibullDataSet.Calculate.Cmt}} This is equivalent to the '''Calculate''' icon on the standard folio control panel. The results are contained in the properties of [[WeibullDataSet Class|WeibullDataSet]].
{{Template:WeibullDataSet.Calculate.Cmt}} This is equivalent to clicking the '''Calculate''' icon on the standard folio control panel.


{{Template:WeibullDataSet.Calculate.ResultNote.Cmt}}
{{Template:WeibullDataSet.Calculate.ResultNote.Cmt}}

Revision as of 19:04, 10 February 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.

Method Syntax

Calculate()

Usage Example

Declare the WeibullDataSet. See New WeibullDataSet for additional details.

       Dim WDS as New WeibullDataSet

Add values to the raw data.

       WDS.AddFailure(1, 1)
       WDS.AddFailure(2, 1)
       WDS.AddFailure(3, 1)

Calculate the WeibullDataSet.

       WDS.Calculate