ALTAAnalysisResults Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Template:APIClass|ALTADataSet Class|ALTADataSet}}
{{Template:APIClass|ALTADataSet Class|ALTADataSet}}
A class that describes the likelihood value that an event will occur. This class contains only one property.
Contains the likelihood function value that was estimated from the analysis.  


== Property Syntax==
In ALTA, this is the '''LK Value''' that can appear in the '''Analysis Summary''' area on the control panel.
{{Template:ALTAAnalysisResults.LikelihoodValue}}
 
== Properties==
 
*LikelihoodValue (as ''double'') {{APIComment|The likelihood function value.}}


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

Revision as of 20:29, 26 February 2014


Contains the likelihood function value that was estimated from the analysis.

In ALTA, this is the LK Value that can appear in the Analysis Summary area on the control panel.

Properties

  • LikelihoodValue (as double) The likelihood function value.

Usage Example

Declare the ALTADataSet. See New ALTADataSet for additional details.

       Dim ALTADS as New ALTADataSet

Declare an ALTAStressProfile. See ALTAStressProfile for additional details.

       Dim sp = New ALTAStressProfile("Profile1")
       sp.RepeatCycle = True
       sp.AddSegment(1, 250)
       sp.AddSegment(2, 300)
       sp.AddSegment(3, 400)

Add values to the raw data.

       ALTADS.AddFailure(1, 1, sp)
       ALTADS.AddFailure(2, 1, sp)
       ALTADS.AddFailure(3, 1, sp)

Calculate the Fitted Model using the raw data.

       ALTADS.Calculate()

Retrieve the results. In this example, the likelihood result value is retrieved.

       Dim Likelihood As Double
       Likelihood = ALTADS.AnalysisResults.LikelihoodValue