WeibullSolverNumParameters Enumeration: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
*MS_3Parameter {{APIComment|3-parameter form}}
*MS_3Parameter {{APIComment|3-parameter form}}
*MS_Mixed      {{APIComment|Mixed Weibull analysis (must set Weibull as the distribution type)}}
*MS_Mixed      {{APIComment|Mixed Weibull analysis (must set Weibull as the distribution type)}}
== 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

Revision as of 23:43, 2 May 2014


Specifies different forms of a life distribution (e.g., 2-parameter vs. 3-parameter).

The life distribution itself (e.g., Weibull vs. normal) is specified in the Distribution property of the WeibullAnalysisOptions class.

Members

  • MS_1Parameter 1-parameter form
  • MS_2Parameter 2-parameter form
  • MS_3Parameter 3-parameter form
  • MS_Mixed Mixed Weibull analysis (must set Weibull as the distribution type)