ALTAAnalysisResults Class: Difference between revisions
Jump to navigation
Jump to search
Kate Racaza (talk | contribs) No edit summary |
Kate Racaza (talk | contribs) No edit summary |
||
Line 23: | Line 23: | ||
{{APIComment|'Add failure times for Stress1 = 190 and 235.}} | {{APIComment|'Add failure times for Stress1 = 190 and 235.}} | ||
{{APIPrefix|Call}} ADS.AddFailure_2(100, 1, 190) | |||
{{APIPrefix|Call}} ADS.AddFailure_2(120, 1, 190) | |||
{{APIPrefix|Call}} ADS. | {{APIPrefix|Call}} ADS.AddFailure_2(130, 1, 235) | ||
{{APIPrefix|Call}} ADS. | {{APIPrefix|Call}} ADS.AddFailure_2(140, 1, 235) | ||
{{APIPrefix|Call}} ADS. | |||
{{APIPrefix|Call}} ADS. | |||
{{APIComment|'Fit the data to a model, using all default analysis settings.}} | {{APIComment|'Fit the data to a model, using all default analysis settings.}} |
Revision as of 23:36, 5 May 2016
Member of: SynthesisAPI
Represents the likelihood function value estimated from the accelerated life testing data analysis of an associated ALTADataSet object.
Properties
Name | Description |
---|---|
LikelihoodValue | Gets the likelihood function value (LK value). Double. |
Example
The following example demonstrates how to return the LK value of a particular ALTADataSet object.
VBA 'Declare a new ALTADataSet object. Dim ADS As New ALTADataSet 'Define a stress type with use stress level = 300. Call ADS.AddStressDefinition("Stress1",,300) 'Add failure times for Stress1 = 190 and 235. Call ADS.AddFailure_2(100, 1, 190) Call ADS.AddFailure_2(120, 1, 190) Call ADS.AddFailure_2(130, 1, 235) Call ADS.AddFailure_2(140, 1, 235) 'Fit the data to a model, using all default analysis settings. Call ADS.Calculate() 'Retrieve the LK value. Dim LK As Double LK = ADS.AnalysisResults.LikelihoodValue Msgbox(LK)
VB.NET 'Declare a new ALTADataSet object. Dim ADS As New ALTADataSet 'Define a stress type with use stress level = 300. ADS.AddStressDefinition("Stress1",,300) 'Add failure times for Stress1 = 190 and 235. ADS.AddFailure(100, 1, 190) ADS.AddFailure(120, 1, 190) ADS.AddFailure(130, 1, 235) ADS.AddFailure(140, 1, 235) 'Fit the data to a model, using all default analysis settings. ADS.Calculate() 'Retrieve the LK value. Dim LK As Double LK = ADS.AnalysisResults.LikelihoodValue Msgbox(LK)