CModel.Bounds Parameters: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
No edit summary
Line 8: Line 8:
== Usage Example ==
== Usage Example ==
<div style="margin-right: 150px">
<div style="margin-right: 150px">
  {{APIComment|'Declare a new repository connection class.}}
  {{APIComment|'Declare a new repository connection object.}}
   Dim MyRepository As New Repository
   Dim MyRepository As New Repository
    
    

Revision as of 22:18, 27 May 2014


Returns an array containing bounds on all the model parameters. Use the SetConfidenceLevel method to specify the confidence bound settings.

Syntax

Usage Example

 'Declare a new repository connection object. 
 Dim MyRepository As New Repository
 
 'Connect to the Synthesis repository. 
 Dim Success As Boolean = False
 Success = MyRepository.ConnectToRepository("RepositoryFileNamePath")
   
 'Get the model with the numerical ID 15. 
 Dim AModel as cModel
 AModel = MyRepository.GetModel(15)
   
 'Get the confidence bounds on the parameters of that model. 
 Dim ModelBoundsParameters() as ParamBoundsValues
 ModelBoundsParameters = AModel.Bounds_Parameters
   
 'Save the lower bound on the first parameter. 
 Dim lower as double
 lower = ModelBoundsParameters.Lower