BoundsValues Class: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(20 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Template:APIClass|Global_Model|Global Model}}
{{Template:API}}{{Template:APIBreadcrumb}}
{{Template:BoundsValues Class.Cmt}}
 
 
<onlyinclude>Represents the confidence bounds associated with a [[cModel Class|cModel]] object.</onlyinclude>
 
== Properties  ==
== Properties  ==
*'''[[BoundsValues.Upper|Upper]]''' {{APIComment|Returns the Upper value}}
{| {{APITable}}
*'''[[BoundsValues.Lower|Lower]]''' {{APIComment|Returns the Lower value}}
|-
 
| style="width: 200px;"|Upper||Gets or sets the upper confidence bounds. '''Double'''.
== Formatted Usage Example ==
|-
{{APIComment|Declare a new repository connection class.}}
|Lower||Gets or sets the lower confidence bounds. '''Double'''.
        Private WithEvents MyRepository As New Repository
|}


{{APIComment|Connect to the Synthesis repository.}}
        Dim Success As Boolean = False
        Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")


{{APIComment|Get the list of Projects in the connected repository.}}
        Dim ListOfModels() As [[NameIdPair Class|NameIdPair]]
        ListOfModels = MyRepository.GetAllModelsInfo()


{{APIComment|Select the ID of the model and retrieve it.}}
        Dim AModel as cModel
        AModel = MyRepository.GetModel(ListOfModels(0).ID)


{{APIComment|Get the Bounds on reliability.}}
        Dim ModelBoundsValue as BoundsValues
        ModelBoundsValue = AModel.Bounds_Reliability(100)


{{APIComment|Get the Upper Bound result.}}
==See Also==
        Dim UpperBoundValue as Double
*[[CModel.Bounds Reliability|cModel.Bounds Reliability Method]]
        UpperBoundValue = ModelBoundsValue.Upper
*[[CModel.Bounds Unreliability|cModel.Bounds Unreliability Method]]
*[[CModel.Bounds Time|cModel.Bounds Time Method]]
*[[CModel.Bounds MeanTime|cModel.Bounds MeanTime Method]]
*[[CModel.Bounds FailureRate|cModel.Bounds FailureRate Method]]

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