BoundsValues Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
 
(13 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Template:APIClass|cModel Class|cModel}}
{{Template:API}}{{Template:APIBreadcrumb}}
Stores the upper and lower confidence bounds estimated from a [[cModel Class|cModel]] object.
 
 
<onlyinclude>Represents the confidence bounds associated with a [[cModel Class|cModel]] object.</onlyinclude>


== Properties  ==
== Properties  ==
*Upper (as ''double'') {{APIComment|Gets the upper value.}}
{| {{APITable}}
*Lower (as ''double'') {{APIComment|Gets the lower value.}}
|-
| style="width: 200px;"|Upper||Gets or sets the upper confidence bounds. '''Double'''.
|-
|Lower||Gets or sets the lower confidence bounds. '''Double'''.
|}
 
 
 
 


== Usage Example ==
==See Also==
<div style="margin-right: 150px;">
*[[CModel.Bounds Reliability|cModel.Bounds Reliability Method]]
{{APIComment|'Initialize a new cModel object (life distribution with specified parameters). See [[cModel Class|cModel]].}}
*[[CModel.Bounds Unreliability|cModel.Bounds Unreliability Method]]
  Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
*[[CModel.Bounds Time|cModel.Bounds Time Method]]
 
*[[CModel.Bounds MeanTime|cModel.Bounds MeanTime Method]]
{{APIComment|'Specify that the 90% two-sided confidence bounds will be calculated. See [[cModel.SetConfidenceLevel]].}}
*[[CModel.Bounds FailureRate|cModel.Bounds FailureRate Method]]
  Dim SuccessSetConfLevel As Boolean
  Dim SetsError As String
  SuccessSetConfLevel = newModel.SetConfindenceLevel(.9, ConfBoundsSides.TwoSidedBoth, False, SetsError)
 
{{APIComment|Get an object containing the bounds on reliability at time &#61; 100.}}
  Dim ModelBoundsValue as BoundsValues
  ModelBoundsValue = AModel.Bounds_Reliability(100)
 
{{APIComment|'Save the upper and lower bounds.}}
  Dim UpperBoundValue as Double
  Dim LowerBoundValue as Double
  UpperBoundValue = ModelBoundsValue.Upper
  LowerBoundValue = ModelBoundsValue.Lower
</div>

Latest revision as of 23:23, 7 April 2016

APIWiki.png


Member of: SynthesisAPI


Represents the confidence bounds associated with a cModel object.

Properties

Name Description
Upper Gets or sets the upper confidence bounds. Double.
Lower Gets or sets the lower confidence bounds. Double.



See Also