WeibullSolverMethod Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
 
(8 intermediate revisions by one other user not shown)
Line 1: Line 1:
{{Template:APIClass|Global_Weibull|Global Weibull}}
{{Template:API}}{{Template:APIBreadcrumb}}
{{Template:WeibullSolverMethod.Cmt}}


== Syntax==


{{APIPrefix|Public Enum}}
Specifies the method for estimating the parameters of a distribution.
{{APIName|'''WeibullSolverMethod'''}}


== Members ==
== Members ==
 
{| {{APITableEnum}}
{| border="1" cellpadding="5" cellspacing="0"
| '''Name''' || '''Description'''
|-
|RRX        || Rank Regression on X (RRX)
|-
|-
|RRY        || Rank Regression Y (RRY)
| style="width: 150px;"|RRX||style="width: 80px;"|0||Rank regression on X.
|-
|-
|MLE        || Maximum Likelihood Estimation (MLE)
|RRY||1||Rank regression on Y.
|-
|-
|MLE||2||Maximum likelihood estimation.
|}
|}


== Usage Example ==


{{APIComment|Declare a WeibullDataSet object.}}
        Dim WDS as New [[WeibullDataSet Class|WeibullDataSet]]


{{APIComment|Set Weibull as the distribution for analysis.}}
        WDS.[[WeibullDataSet.AnalysisSettings|AnalysisSettings]].[[WeibullAnalysisOptions.Distribution|Distribution]] = [[WeibullSolverDistribution]].Weibull


{{APIComment|Specify that the 2-parameter Weibull distribution will be used.}}
        WDS.[[WeibullDataSet.AnalysisSettings|AnalysisSettings]].[[WeibullAnalysisOptions.Parameters|Parameters]] = [[WeibullSolverNumParameters]].MS_2Parameter


{{APIComment|Set MLE as the method that will be used to estimate the parameters.}}
 
        WDS.[[WeibullDataSet.AnalysisSettings|AnalysisSettings]].[[WeibullAnalysisOptions.Analysis|Analysis]] = [[WeibullSolverMethod]].MLE
==See Also==
*[[WeibullBestFitOptions Class]]
*[[WeibullAnalysisOptions Class]]

Latest revision as of 15:02, 21 April 2016

APIWiki.png


Member of: SynthesisAPI


Specifies the method for estimating the parameters of a distribution.

Members

Name Value Description
RRX 0 Rank regression on X.
RRY 1 Rank regression on Y.
MLE 2 Maximum likelihood estimation.




See Also