ALTAAnalysisResults Class: Difference between revisions
Jump to navigation
Jump to search
John Leavitt (talk | contribs) m (Protected "ALTAAnalysisResults Class" ([edit=sysop] (indefinite) [move=sysop] (indefinite)) [cascading]) |
John Leavitt (talk | contribs) (→Syntax) |
||
Line 3: | Line 3: | ||
== Syntax== | == Syntax== | ||
{{Template:ALTAAnalysisResults.LikelihoodValue}} | {{Template:ALTAAnalysisResults.LikelihoodValue}} | ||
== Usage Example == | |||
{{APIComment|Declare the ALTADataSet. See [[New ALTADataSet]] for additional details.}} | |||
Dim ALTADS as New ALTADataSet | |||
{{APIComment|Declare an [[ALTAStressProfile Class|ALTAStressProfile]]. See [[ALTAStressProfile Class|ALTAStressProfile]] for additional details.}} | |||
Dim sp = New ALTAStressProfile("Profile1") | |||
sp.RepeatCycle = True | |||
sp.AddSegment(1, 250) | |||
sp.AddSegment(2, 300) | |||
sp.AddSegment(3, 400) | |||
{{APIComment|Add values to the raw data.}} | |||
ALTADS.AddFailure(1, 1, sp) | |||
ALTADS.AddFailure(2, 1, sp) | |||
ALTADS.AddFailure(3, 1, sp) | |||
{{APIComment|Calculate the Fitted Model using the raw data.}} | |||
ALTADS.Calculate() | |||
{{APIComment|Retrieve the results. In this example, the likelihood result value is retrieved.}} | |||
Dim Likelihood As Double | |||
Likelihood = ALTADS.AnalysisResults.LikelihoodValue |
Revision as of 17:11, 6 February 2014
A class that describes various results.
Syntax
Public LikelihoodValue As Double
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