WeibullDataSet.ClearDataSet: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
{{Template:WeibullDataSet.ClearDataSet.Cmt}} All analysis settings remain unchanged.
{{Template:WeibullDataSet.ClearDataSet.Cmt}} All analysis settings remain unchanged.


== Method Syntax  ==
== Syntax  ==
{{Template:WeibullDataSet.ClearDataSet}}  
*{{Template:WeibullDataSet.ClearDataSet}}  


== Usage Example ==
== Usage Example ==

Revision as of 18:56, 11 February 2014


Clears all data in the data set and removes the fitted model, if any. All analysis settings remain unchanged.

Syntax

  • ClearDataSet()

Usage Example

Declare the WeibullDataSet. See New WeibullDataSet for additional details.

       Dim WDS as New WeibullDataSet

Add values to the raw data. See WeibullDataSet.AddFailure for additional details.

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

Calculate the Fitted Model using the raw data.

       WDS.CalculateBestFit

Use the Fitted Model using the raw data.

       Dim WDSFittedModel as cModel
       WDSFittedModel = WDS.FittedModel

Use ClearDataSet to clear data and fitted model.

       WDS.ClearDataSet

Get the number of failures. In this example, NumberOfFailures will be 0.

       Dim NumberOfFailures as Integer
       NumberOfFailures = WDS.FailureCount