BoundsValues Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
{| {{APITable}}
{| {{APITable}}
|-
|-
| style="width: 200px;"|Upper||''Double''. Gets the upper value.
| style="width: 200px;"|Upper||Gets or sets the upper value. '''Double.'''
|-
|-
|Lower||''Double''. Gets the lower value.
|Lower||Gets or sets the lower value. '''Double.'''
|}
|}
<!--
== Usage Example ==
<div style="margin-right: 150px;">
{{APIComment|'Initialize a new cModel object (life distribution with specified parameters). See [[cModel Class|cModel]].}}
  Dim newModel As New cModel(ModelTypeEnum.Weibull2, ModelCategoryEnum.Reliability, "NewModel1", 1, 100)
 
{{APIComment|'Specify that the 90% two-sided confidence bounds will be calculated. See [[cModel.SetConfidenceLevel]].}}
  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>
-->

Revision as of 16:26, 7 August 2015

APIWiki.png


Member of: SynthesisAPI


Stores the upper and lower confidence bounds estimated from a cModel object.

Properties

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